---
title: "List Assets"
method: GET
path: "/v1/assets"
tags: ["Assets"]
---

# List Assets

`GET /v1/assets`

List assets in the workspace, most recently created first.

## Query parameters

- `page_size` integer — Number of assets to return.
- `cursor` string, nullable — Token from a previous response's `next_cursor`. Omit to fetch the first page.
- `search` string, nullable — Optional free-text search filter over asset names.

## Headers

- `xi-api-key` string, nullable — Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

## Response `200`

Successful Response

- AssetListResponse — One page of the workspace's assets, most recently created first.
  - `assets` AssetResponse[], required — List of Asset objects.
    - `asset_id` string, required — Unique identifier for the asset.
    - `name` string, required — Display name of the asset.
    - `mime_type` string, required — MIME type of the uploaded file (e.g. `audio/mpeg`).
    - `created_at_unix` integer, required — Unix timestamp (seconds) the asset was created.
    - `content_url` string, nullable, required — Signed URL to fetch the asset's content. May be `null` if the asset has not finished processing. Do not rely on it being valid for more than 1 hour; fetch the asset again for a fresh URL.
  - `next_cursor` string, nullable, required — Pass as `cursor` to fetch the next page. `null` if there are no more results.
  - `has_more` boolean, required — Whether there are more results to fetch.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/elevenlabs/apis/elevenlabs-api-documentation.md) · [All operations](https://skmtc.net/elevenlabs/apis/elevenlabs-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/elevenlabs/elevenlabs-api-documentation/revisions/db6eec599cbe/schema)
