Get Reposts
GET/users/:id/reposts
Gets the given user's reposts
Request
Path Parameters
id stringrequired
A User ID
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
Responses
- 200
- 400
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
timestamp stringrequired
item_type stringrequired
Possible values: [track, playlist]
item
object
required
{
"data": [
{
"timestamp": "string",
"item_type": "track",
"item": {},
"class": "string"
}
]
}
Bad request
Server error
Loading...