# List replies to a question

`GET https://api.cademi.com.br/api/v3/products/{product_id}/questions/{question_id}/replies`

Operation ID: `questions.replies.list` · API v3

Returns all replies to a question in a single response, in chronological order, while preserving the standard collection response format.

Private replies and the draft reply (ID `qrp_draft_<question_id>`) are included only when the credentials have the `questions.read_private` permission. When present, the draft is listed last.

Required permissions: `questions.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `product_id` | path | string | yes |  |
| `question_id` | path | string | yes |  |

## Responses

### 200

Returns the collection of replies.

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 404

The question was not found in the specified product or is not accessible with the current credentials.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
