# List the comments on a post

### List the comments on a post

`GET /api/v1/instagram/posts/{postId}/comments`

Operation ID: `listInstagramPostComments`

Returns the comments on a post, or the replies to one comment. Take commentId from a row to read that reply thread.

**Path parameters**

- `postId` (string, required): postId from a posts listing, or the short code from the post URL.

**Query parameters**

- `connectedAccountId` (string · uuid, required): Connected account to act as
- `commentId` (string, optional): Read the replies to this comment instead of the top-level comments.
- `cursor` (string, optional)
- `limit` (integer, optional): Page size, up to 100. Defaults to 20. A page can hold fewer, so follow cursor until it comes back null.

**200**: Comments.

- `comments` (object[], required)
- `cursor` (string | null, required)

**Errors**

- `400`: Bad request
- `401`: Unauthorized: missing or invalid API key
- `403`: Forbidden
- `404`: Not found
- `422`: Invalid request payload
