> ## 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 Face Match images

> Download the document and selfie images for a Face Match verification — in the gu1 KYC API for identity verification flows, with examples for face match images.

## Overview

After a successful [Face Match](/en/use-cases/kyc/face-match) request, you can download the **document** and **selfie** that were submitted by calling the two GET endpoints below.

Use the same **`verificationId`** (UUID) returned in the POST response (or the `id` from [GET verification](/en/use-cases/kyc/get-face-match-verification)). Use the same **`Authorization: Bearer`** API key and **read KYC** permission as for other Face Match routes.

If a copy of an image was not kept for that verification, the corresponding endpoint returns **404** (for example when storage failed during the run).

## Endpoints

### Document image

```
GET https://api.gu1.ai/api/kyc/face-match/verifications/{verificationId}/document-image
```

### Selfie image

```
GET https://api.gu1.ai/api/kyc/face-match/verifications/{verificationId}/selfie-image
```

### Path parameters

<ParamField path="verificationId" type="string" required>
  UUID of the Face Match verification (same as <code>verificationId</code> from POST or <code>id</code> from GET one/list).
</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`, `image/png`).                               |
| **404** | Verification not found, not in your organization, or that image is not available for download. |

## Examples

```bash theme={null}
# Document (reference image sent in POST)
curl -sS -o document.jpg \
  -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.gu1.ai/api/kyc/face-match/verifications/VERIFICATION_UUID/document-image"

# Selfie
curl -sS -o selfie.jpg \
  -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.gu1.ai/api/kyc/face-match/verifications/VERIFICATION_UUID/selfie-image"
```

## Related

* [Face Match (POST)](/en/use-cases/kyc/face-match)
* [Get Face Match verification](/en/use-cases/kyc/get-face-match-verification)
