---
title: "List comments on a post"
method: GET
path: "/posts/{id}/comments"
tags: ["Posts"]
---

# List comments on a post

`GET /posts/{id}/comments`

Returns comments for a post with pagination.

## Path parameters

- `id` string, required

## Query parameters

- `offset` integer
- `limit` integer
- `teamOnly` 'true' | 'false'

## Response `200`

List of comments with pagination

- object
  - `data` object[], required
    - `id` string, required
    - `postId` string, required
    - `text` string, required
    - `authorId` string, required
    - `teamOnly` boolean, required
    - `replyFor` string
    - `reactions` object[], required
      - `emoji` string, required
      - `emojiId` string, required
      - `emojiSkin` integer, required
      - `emojiNative` string, required
      - `users` object[], required
        - `userId` string, required
        - `userName` string
        - `createdAt` string, date-time
    - `createdAt` string, date-time, required
  - `pagination` object, required
    - `offset` number, required
    - `limit` number, required
    - `hasMore` boolean, required

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Post not found
- `429` — Rate limit exceeded
- `500` — Internal server error

---

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