> ## Documentation Index
> Fetch the complete documentation index at: https://docs.postsyncer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get comment

> Retrieve a single comment with nested replies

## Get comment

### Request

<ParamField path="comment" type="integer" required>
  Numeric id of the comment (`comments.id`).
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X GET "https://postsyncer.com/api/v1/comments/456" \
    -H "Authorization: Bearer YOUR_API_TOKEN"
  ```
</RequestExample>

### Response

Comment resource: `id`, `post_id`, `parent_comment_id`, `source`, `platform`, `content`, `is_resolved`, `is_approved`, `replies`, `media`, `user`, etc.

### Errors

`401` · `404` (comment not in an accessible workspace)

See [Comments overview](/api-reference/comments/overview).
