Logo

Docs

Endpoints

Get lyrics for a song

GET
/songs/{id}/rel/lyrics

Path Parameters

id*string

Query Parameters

lang?string

Preferred locale string such as en-US. Implementations may ignore localization, but en-US is the recommended default and fallback.

Default"en-US"

Response Body

application/json

application/json

curl -X GET "http://localhost:8080/api/songs/string/rel/lyrics"
{
  "data": {
    "text": "string",
    "language": "string"
  }
}
{
  "error": {
    "code": 0,
    "title": "string",
    "message": "string",
    "trace_id": "string"
  }
}