Post Comments
List Post Comments
Get comments from one of your posts.
get/api/{account}/posts/{post_id}/comments
Query parameters
limitinteger
Number of comments to return (default = 10)
Example:10
Number of comments to return (default = 10)
offsetinteger
Number of comments to skip for pagination
Number of comments to skip for pagination
sort'desc' | 'asc'
Sort the returned comments (default = desc)
Example:desc
Sort the returned comments (default = desc)
Response
Example response
{
"data": {
"list": [
{
"id": 123,
"text": "Text",
"giphyId": null,
"author": {
"id": 123,
"_view": "s"
},
"canLike": true,
"likesCount": 0,
"isLiked": false,
"isLikedByAuthor": false,
"postedAt": "2025-01-01T00:00:00+00:00",
"changedAt": "2025-01-01T00:00:00+00:00",
"isPinned": false
}
],
"hasMore": false,
"nextOffset": 1
},
"_meta": {
"_credits": {
"used": 1,
"balance": 999999876,
"note": "Always"
},
"_cache": {
"is_cached": false,
"note": "Cache disabled for this endpoint"
},
"_rate_limits": {
"limit_minute": 1000,
"limit_day": 50000,
"remaining_minute": 999,
"remaining_day": 49883
}
}
}