# Retrieve a reply

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

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

Retrieves a published reply by its public ID, or the question's draft reply using the ID `qrp_draft_<question_id>`.

Private replies and drafts are visible only to credentials with the `questions.read_private` permission. Without it, they return `404 Not Found`.

The response includes an `ETag` representing the current revision. Send this value in the `If-Match` header when updating the reply to avoid overwriting a newer version.

Required permissions: `questions.read`.

## Parameters

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

## Responses

### 200

Returns the requested reply or draft.

### 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 reply or draft was not found for the specified question, or is not accessible with the current credentials.

Body: Error.

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