Skip to main content
GET
/
tracks
/
{id}
/
lyrics
Get lyric for specified track
curl --request GET \
  --url https://open.beatpass.ca/api/v1/tracks/{id}/lyrics \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "lyric": {
    "id": 1,
    "text": "lyric for a song..."
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

ID of the track

Response

Response body contains a lyric object for specified track

status
string
Example:

"success"

lyric
object
Last modified on November 29, 2025