DiskografDocs
APIUsers

List a member's discography

Songs credited to the artist profile this member has claimed. Returns 404 when the member exists but has claimed no artist, since there is then no discography to return.

GET
/v1/users/{username}/songs

Path Parameters

username*string

Query Parameters

q?string
genre?string
role?string
sort?string
order?string

Value in

  • "asc"
  • "desc"
limit?integer
Range1 <= value <= 80
Default20
offset?integer
Range0 <= value
Default0

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/users/string/songs"
{  "data": [    {      "id": -9007199254740991,      "title": "string",      "slug": "string",      "released_at": "string",      "artwork_url": "string",      "artwork_source": "Custom",      "youtube_video_id": "string",      "youtube_video_url": "string",      "artists": [        {          "id": -9007199254740991,          "name": "string"        }      ]    }  ],  "meta": {    "total": -9007199254740991,    "limit": -9007199254740991,    "offset": -9007199254740991  }}