curl --request GET \
  --url https://api.campsite.com/v2/posts/{post_id}/comments \
  --header 'Authorization: Bearer <token>'
{
  "next_cursor": "<string>",
  "prev_cursor": "<string>",
  "data": [
    {
      "id": "<string>",
      "content": "<string>",
      "created_at": "<string>",
      "replies_count": 123,
      "parent_id": "<string>",
      "subject_id": "<string>",
      "subject_type": "<string>",
      "author": {
        "avatar_urls": {
          "xs": "<string>",
          "sm": "<string>",
          "base": "<string>",
          "lg": "<string>",
          "xl": "<string>",
          "xxl": "<string>"
        },
        "name": "<string>",
        "id": "<string>",
        "type": "app"
      }
    }
  ],
  "total_count": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

post_id
string
required

Query Parameters

after
string

Use with next_cursor and prev_cursor in the response to paginate through results.

limit
number

Specifies how many records to return. The default and maximum is 50.

parent_id
string

The ID of the parent comment.

sort
enum<string>
Available options:
created_at
direction
enum<string>
Available options:
asc,
desc

Response

200 - application/json
Successful operation
data
object[]
required
total_count
number
required
next_cursor
string | null
prev_cursor
string | null