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

# Get ID Verification images

> Download document front and back images for an ID Verification — in the gu1 KYC API for identity verification flows, with examples for id verification images.

## Overview

After [ID Verification (POST)](/en/use-cases/kyc/id-verification), you can download the **front** (and, when applicable, **back**) document images using the GET endpoints below.

Put the verification **`id`** in the path—the same UUID as `verificationId` in the POST response or `id` from [list / GET one](/en/use-cases/kyc/get-id-verification-verification). No extra query parameters. Same **`Authorization: Bearer`** and **read KYC** permission as the other ID Verification routes.

Use the **back** endpoint only when that verification actually included a back image; otherwise you may get **404**.

## Endpoints

### Document front

```
GET https://api.gu1.ai/api/kyc/id-verification/verifications/{verificationId}/document-front-image
```

### Document back

```
GET https://api.gu1.ai/api/kyc/id-verification/verifications/{verificationId}/document-back-image
```

### Path parameters

<ParamField path="verificationId" type="string" required>
  UUID of the ID verification (same as <code>verificationId</code> from POST or <code>id</code> from list/GET one).
</ParamField>

### Headers

* **`Authorization`**: `Bearer YOUR_API_KEY` (required)

Include `X-Organization-Id` if your account is organization-scoped.

### Responses

| HTTP    | Description                                                                                    |
| ------- | ---------------------------------------------------------------------------------------------- |
| **200** | Raw image bytes (`Content-Type` e.g. `image/jpeg`).                                            |
| **404** | Verification not found, not in your organization, or that image is not available for download. |

## Examples

```bash theme={null}
curl -sS -o front.jpg \
  -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.gu1.ai/api/kyc/id-verification/verifications/VERIFICATION_UUID/document-front-image"

curl -sS -o back.jpg \
  -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.gu1.ai/api/kyc/id-verification/verifications/VERIFICATION_UUID/document-back-image"
```

## Related

* [ID Verification (POST)](/en/use-cases/kyc/id-verification)
* [List / get ID Verification](/en/use-cases/kyc/get-id-verification-verification)
