# Retrieve an exam question

`GET https://api.cademi.com.br/api/v3/products/{product_id}/exams/{exam_id}/questions/{exam_question_id}`

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

The `correct` field of each alternative is included only when the current credentials have the `exams.read_answer_key` permission; otherwise, the field is omitted.

Required permissions: `exams.read`.

## Parameters

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

## Responses

### 200

Returns the requested question.

Body: `data`: ExamQuestion.

Fields of ExamQuestion:

| Field | Type | Required | Description |
|---|---|---|---|
| `alternatives` | array of object | yes |  |
| `created_at` | string (date-time) | yes |  |
| `deleted` | boolean | yes |  |
| `exam_id` | string | yes | Public ID of the exam, prefixed with exm_. |
| `format` | string, one of `multiple_choice` | yes |  |
| `id` | string | yes | Public ID of the exam question, prefixed with exq_. |
| `image` | string or null | yes |  |
| `object` | string, one of `exam_question` | yes |  |
| `position` | integer | yes |  |
| `revision` | string | yes |  |
| `text` | string | yes |  |
| `updated_at` | string (date-time) | yes |  |

### 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 for the specified exam or is not accessible with the current credentials.

Body: Error.

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