Get best selling tracks and/or albums
GET/explore/best-selling
Get best selling tracks and playlists
Request
Query Parameters
offset integer
The number of items to skip. Useful for pagination (page number * limit)
limit integer
The number of items to fetch
user_id string
The user ID of the user making the request
type string
Possible values: [all, track, album]
Default value: all
The type of content to filter by
Responses
- 200
- 400
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
content_id stringrequired
content_type string
Possible values: [track, album]
title stringrequired
owner_id stringrequired
{
"data": [
{
"content_id": "string",
"content_type": "track",
"title": "string",
"owner_id": "string"
}
]
}
Bad request
Server error
Loading...