Lyrics

GET https://api.sdbots.tech/lyrics

Query Parameters

{
  "artist": "",
  "lyrics": "",
  "title": ""
}

Example:

import requests

API = "https://api.sdbots.tech/lyrics?song=dan-sapada"
req = requests.get(API).json()
print(req)

POST https://api.sdbots.tech/lyrics

Query Parameters

{
  "artist": "",
  "lyrics": "",
  "title": ""
}

Example:

import requests

song = {
    "song": "dan sapada"
}

API = "https://api.sdbots.tech/lyrics"
req = requests.post(API ,json=song).json()
print(req)

Last updated