Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request GET \
--url https://open.beatpass.ca/api/v1/tracks/{id}/comments \
--header 'Authorization: Bearer <token>'{
"status": "success",
"pagination": {
"current_page": 1,
"from": 1,
"to": 100,
"per_page": 25,
"last_page": 156,
"total": 264,
"data": [
{
"id": 1,
"content": "comment text",
"position": 0,
"depth": 1,
"deleted": false,
"user": {
"id": 123,
"display_name": "<string>",
"avatar": "<string>"
}
}
]
}
}curl --request GET \
--url https://open.beatpass.ca/api/v1/tracks/{id}/comments \
--header 'Authorization: Bearer <token>'{
"status": "success",
"pagination": {
"current_page": 1,
"from": 1,
"to": 100,
"per_page": 25,
"last_page": 156,
"total": 264,
"data": [
{
"id": 1,
"content": "comment text",
"position": 0,
"depth": 1,
"deleted": false,
"user": {
"id": 123,
"display_name": "<string>",
"avatar": "<string>"
}
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the track
How many comments to return per page
Which page to return
Response body contains a paginated list of track comments in JSON format.
"success"
Show child attributes
1
1
100
25
156
264
Show child attributes
1
"comment text"
0
1
false
Was this page helpful?