Get Comment Replies
GET/comments/:comment_id/replies
Gets replies to a parent comment
Request
Path Parameters
comment_id stringrequired
A Comment 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
Schema
Array [
Array [
]
]
dataobject[]
id stringrequired
user_id stringrequired
message stringrequired
mentionsobject[]
user_id integerrequired
handle stringrequired
track_timestamp_s integer
react_count integerrequired
is_edited booleanrequired
is_current_user_reacted boolean
is_artist_reacted boolean
created_at stringrequired
updated_at string
{
"data": [
{
"id": "36mzE",
"user_id": "Wem1e",
"message": "@audius get this pumping!",
"mentions": [
{
"user_id": 584336563,
"handle": "audius"
}
],
"track_timestamp_s": null,
"react_count": 0,
"is_edited": null,
"is_current_user_reacted": false,
"is_artist_reacted": false,
"created_at": "2024-10-28 17:02:40",
"updated_at": "2024-10-28 17:02:40"
}
]
}
Bad request
Server error
Loading...