# Download an IDPass image

`GET /idpasses/{idpass_uuid}/images/{image_type}`

- Base: `GET https://portal.watcheye.com.au/api/v1/idpasses/{idpass_uuid}/images/{image_type}`

Returns a single IDPass image as its raw bytes, mirroring the
[download IDPass PDF](/docs/reference/idpass.pdf) endpoint. The `Content-Type` is the image's
stored MIME type (typically `image/jpeg`) and a `Content-Disposition` header suggests an
inline filename. The `image_type` is one of the file types listed in the `images` array of
the [show IDPass](/docs/reference/idpass.show) response (e.g. `licence_front`, `id_photo`,
`probe_image`); that array is also where the per-image `title` and `mime_type` metadata live.

Images are only retained when the IDPass was launched with `return_verification_images`
set to `true`. Unknown or unavailable types return `404`.

## Parameters

| Name | In | Type | Description |
|------|----|------|-------------|
| `idpass_uuid` | path | string (uuid) | **Required.** The uuid of the IDPass. |
| `image_type` | path | string | **Required.** The image file type, as listed in the `images` array of the show response. Example: `id_photo` |

## Responses

### 200 The requested image, returned as raw bytes

Content type: `image/jpeg`, `image/png`

Standard error responses: 401, 403, 404, 429, 5XX (see [Common error responses](/docs/reference/general/common-error-responses.md))

