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

# Get media

> Retrieve one media library item by id

## Get media

Returns a single library item if it belongs to a workspace you can access.

### Request

<ParamField path="media_id" type="integer" required>
  The media row **`id`** (same as returned from list or upload endpoints).
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X GET "https://postsyncer.com/api/v1/media/99" \
    -H "Authorization: Bearer YOUR_API_TOKEN"
  ```
</RequestExample>

### Response

`200` - one `APIMedia` object (`id`, `workspace_id`, `folder_id`, `url`, …).

### Errors

`401` · `403` · `404`

See [Media overview](/api-reference/media/overview).
