---
title: "List media"
description: "List the current user's uploaded and imported media assets."
section: "API reference"
url: https://dravo.dev/docs/api/media/list
---
# List media

List the current user's uploaded/imported assets.

#### `GET /v1/media`

List uploaded/imported media assets for the current user.

**Auth:** API key (`dra_…`) or dashboard JWT

| Field | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `limit` | query | int | no | 1 to 100 (default 50). |

Response `200`: A page of media assets.

```json
{
  "items": [
    {
      "id": "media_8f2c1d",
      "public_url": "https://cdn.dravo.dev/u/abc/2f1c....jpg",
      "kind": "image",
      "content_type": "image/jpeg",
      "size_bytes": 84211,
      "status": "ready",
      "created_at": "2026-06-27T10:00:00Z"
    }
  ],
  "total": 1
}
```
