# Retrieve a media

> Retrieve a media by its identifier.

`GET /rest/api/medias/{id}`

Retrieves a Media resource.

Returns a single media by id, including its `contentUrl`, `mimeType`, `type`, `hash` and image `dimensions`.

## Headers

| Name                         | Type     | Required | Description                                                                                                                                      |
| ---------------------------- | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `X-Flowkiwi-Organization-Id` | `string` | Yes      | The organization the request acts as. Determines the identity, permissions and ownership applied when reading or modifying data on the instance. |

## Path parameters

| Name | Type     | Required | Description      |
| ---- | -------- | -------- | ---------------- |
| `id` | `string` | Yes      | Media identifier |

## Response

**200** - Media resource

| Property     | Type                                     | Required | Description                                           |
| ------------ | ---------------------------------------- | -------- | ----------------------------------------------------- |
| `@context`   | `object`                                 | -        |                                                       |
| `@id`        | `string`                                 | Yes      |                                                       |
| `@type`      | `string`                                 | Yes      |                                                       |
| `id`         | `string`                                 | -        | The resource's unique identifier (UUID).              |
| `contentUrl` | `string \| null`                         | -        | The URL to fetch the uploaded file.                   |
| `mimeType`   | `string \| null`                         | -        | MIME type of the file                                 |
| `type`       | `"image" \| "video" \| "file"`           | -        | Media type based on MIME type (image, video, or file) |
| `hash`       | `string \| null`                         | -        | SHA256 hash of the file                               |
| `dimensions` | `EmbeddedImageDimensionResource \| null` | -        |                                                       |
| `createdAt`  | `string \| null`                         | -        |                                                       |
| `updatedAt`  | `string \| null`                         | -        |                                                       |

## Errors

**403** - Access denied. The caller is missing one or more identity permissions required for this operation.

| Property             | Type       | Required | Description                                                                                                                                |
| -------------------- | ---------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `@context`           | `object`   | -        |                                                                                                                                            |
| `@id`                | `string`   | Yes      |                                                                                                                                            |
| `@type`              | `string`   | Yes      |                                                                                                                                            |
| `type`               | `string`   | -        |                                                                                                                                            |
| `title`              | `string`   | -        |                                                                                                                                            |
| `status`             | `integer`  | -        |                                                                                                                                            |
| `detail`             | `string`   | -        |                                                                                                                                            |
| `missingPermissions` | `string[]` | -        | Identity permissions that the caller is missing for this operation. Present only when the 403 is caused by a denied identity:* permission. |

**404** - Not found

| Property   | Type             | Required | Description                                                                                                                          |
| ---------- | ---------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| `@context` | `object`         | -        |                                                                                                                                      |
| `@id`      | `string`         | Yes      |                                                                                                                                      |
| `@type`    | `string`         | Yes      |                                                                                                                                      |
| `title`    | `string \| null` | -        | A short, human-readable summary of the problem.                                                                                      |
| `detail`   | `string \| null` | -        | A human-readable explanation specific to this occurrence of the problem.                                                             |
| `status`   | `number \| null` | -        |                                                                                                                                      |
| `instance` | `string \| null` | -        | A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. |
| `type`     | `string`         | -        | A URI reference that identifies the problem type                                                                                     |

## Examples

### Example request

```bash
curl -X GET 'https://<tenant>.product-management.flowkiwi.net/rest/api/medias/<product_id>' \
  -H 'Authorization: Bearer {token}' \
  -H 'X-Flowkiwi-Organization-Id: <org_id>' \
  -H 'Accept: application/ld+json'
```

### Example response

```json
{
  "@context": "/contexts/Media",
  "@id": "/rest/api/medias/01234567-89ab-cdef-0123-456789abcdef",
  "@type": "https://schema.org/MediaObject",
  "id": "01234567-89ab-cdef-0123-456789abcdef",
  "contentUrl": "/uploads/medias/tshirt-red-front.jpg",
  "mimeType": "image/jpeg",
  "type": "image",
  "hash": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08",
  "dimensions": {
    "@type": "EmbeddedImageDimensionResource",
    "width": 1200,
    "height": 1200
  },
  "createdAt": "2026-01-15T09:30:00+00:00",
  "updatedAt": "2026-02-03T14:45:12+00:00"
}
```
