Posts
List Post Comments
Returns fan comments on one of the creator's posts, newest first by default. Unlike the post feed itself, this one is offset-paginated — follow _pagination.next_page or step offset yourself. Requires permission api_posts_list_comments.
https://public-api.buffmetrics.comGET/v1/{account_id}/posts/{post_id}/comments
Bearer
Authorization
defaultAuthorizationBearer <token>Send your FansMetric API key as a Bearer token in the Authorization header.
In: header
Path Parameters
account_id*integerOnlyFans numeric account ID.
post_id*integerThe post ID. Numeric.
Query Parameters
limitintegerPage size. Default 10. Min 1, max 100.
offsetintegerRows to skip. Default 0.
sortstringSort direction.
desc(default) orasc. Newest comments come first withdesc.
curl --request GET "https://public-api.buffmetrics.com/v1/acct_XXXXX/posts/sample_post_id/comments?limit=20&offset=0&sort=sample_sort" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"list":[]
"hasMore":false
"nextOffset":0
}
"_pagination":{
"next_page":null
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}