---
title: "List Post Comments"
method: GET
path: "/api/{account}/posts/{post_id}/comments"
tags: ["Post Comments"]
---

# List Post Comments

`GET /api/{account}/posts/{post_id}/comments`

Get comments from one of your posts.

## Query parameters

- `limit` integer — Number of comments to return (default = 10)
- `offset` integer — Number of comments to skip for pagination
- `sort` 'desc' | 'asc' — Sort the returned comments (default = desc)

## Response `200`

- object
  - `data` object
    - `list` object[]
      - `id` integer
      - `text` string
      - `giphyId` string, nullable
      - `author` object
        - `id` integer
        - `_view` string
      - `canLike` boolean
      - `likesCount` integer
      - `isLiked` boolean
      - `isLikedByAuthor` boolean
      - `postedAt` string
      - `changedAt` string
      - `isPinned` boolean
    - `hasMore` boolean
    - `nextOffset` integer
  - `_meta` object
    - `_credits` object
      - `used` integer
      - `balance` integer
      - `note` string
    - `_cache` object
      - `is_cached` boolean
      - `note` string
    - `_rate_limits` object
      - `limit_minute` integer
      - `limit_day` integer
      - `remaining_minute` integer
      - `remaining_day` integer

---

[API](https://skmtc.net/onlyfansapi/apis/onlyfans-api.md) · [All operations](https://skmtc.net/onlyfansapi/apis/onlyfans-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/onlyfansapi/onlyfans-api/revisions/4a99d36f28a3/schema)
