---
title: "Get Post Comments"
method: GET
path: "/posts/comments"
tags: ["Post comments"]
---

# Get Post Comments

`GET /posts/comments`

List of post comments in a thread.

Required scopes:
+ **read**

## Query parameters

- `post_id` integer — Id of a post.
- `post_comment_id` integer — Id of a post comment.
- `before` integer — The time in milliseconds (e.g. 1652177794083) before last comment date.
- `before_comment` integer — Comment id to get older comments.

## Response `200`

Successful Response.

- object
  - `comments` RespPostCommentModel[], required
    - `post_comment_id` integer, required
    - `post_id` integer, required
    - `thread_id` integer, required
    - `poster_user_id` integer, required
    - `poster_username` string, required
    - `poster_username_html` string, required
    - `post_comment_create_date` integer, required
    - `post_comment_body` string, required
    - `post_comment_body_html` string, required
    - `post_comment_body_plain_text` string, required
    - `post_comment_like_count` integer, required
    - `user_is_ignored` boolean, required
    - `post_comment_is_published` boolean, required
    - `post_comment_is_deleted` boolean, required
    - `post_comment_update_date` integer, required
    - `links` object, required
      - `permalink` string, required
      - `detail` string, required
      - `post` string, required
      - `thread` string, required
      - `poster` string, required
      - `likes` string, required
      - `report` string, required
      - `poster_avatar` string, required
    - `permissions` object, required
      - `view` boolean, required
      - `edit` boolean, required
      - `delete` boolean, required
      - `reply` boolean, required
      - `like` boolean, required
      - `report` boolean, required
  - `system_info` RespSystemInfo, required
    - `visitor_id` integer, required
    - `time` integer, required
    - `log_id` integer, required

## Other responses

- `401` — Unauthorized
- `403` — Error Response.
- `404` — Not Found

---

[API](https://skmtc.net/lolz/apis/lolzteam-public-api-forum.md) · [All operations](https://skmtc.net/lolz/apis/lolzteam-public-api-forum/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lolz/lolzteam-public-api-forum/versions/3efcdbc40994/schema)
