Docs
APISongs

Get a song

Full detail for one published song, including every credit, genre and label.

GET
/v1/songs/{songId}

Path Parameters

songId*integer

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/songs/0"
{  "data": {    "id": -9007199254740991,    "title": "string",    "slug": "string",    "released_at": "string",    "published_at": "string",    "views": -9007199254740991,    "claps": -9007199254740991,    "artwork_url": "string",    "artwork_source": "Custom",    "credits": [      {        "order": -9007199254740991,        "artist": {          "id": -9007199254740991,          "name": "string",          "is_group": true,          "avatar_url": "string"        },        "role": {          "id": -9007199254740991,          "title": "string",          "slug": "string",          "tag": "string"        }      }    ],    "genres": [      {        "id": -9007199254740991,        "slug": "string",        "title": "string"      }    ],    "labels": [      {        "id": -9007199254740991,        "name": "string"      }    ]  }}