OnlyFans API
Post comments

List Post Comments

Get comments from one of your posts.

GET
/api/{account}/posts/{post_id}/comments
AuthorizationBearer <token>

Get your API Key from OnlyFansAPI Console - https://app.onlyfansapi.com/api-keys

In: header

Path Parameters

accountstring

The Account ID

post_idstring

The ID of the post.

Query Parameters

limit?integer

Number of comments to return (default = 10)

offset?integer

Number of comments to skip for pagination

sort?string

Sort the returned comments (default = desc)

Value in"desc" | "asc"

Response Body

curl -X GET "https://app.onlyfansapi.com/api/string/posts/string/comments?limit=10&offset=0&sort=desc"
{
  "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
    }
  }
}