Get Trending Tracks IDs With Version
GET/tracks/trending/ids/:version
Gets the track IDs of the top trending tracks on Audius based on the given trending strategy version
Request
Path Parameters
version stringrequired
The strategy version of trending to use
Query Parameters
offset integer
The number of items to skip. Useful for pagination (page number * limit)
limit integer
The number of items to fetch
genre string
Filter trending to a specified genre
Responses
- 200
- 400
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
]
Array [
]
data
object
week
object[]
id stringrequired
month
object[]
id stringrequired
year
object[]
id stringrequired
{
"data": {
"week": [
{
"id": "string"
}
],
"month": [
{
"id": "string"
}
],
"year": [
{
"id": "string"
}
]
}
}
Bad request
Server error
Loading...