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.
Path Parameters
username*string
Query Parameters
q?string
genre?string
role?string
sort?string
order?string
Value in
- "asc"
- "desc"
limit?integer
Range
1 <= value <= 80Default
20offset?integer
Range
0 <= valueDefault
0Response 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 }}