---
title: "List assets. Pass next_cursor back as cursor to read the next page; semantic searches return one ranked page, so next_cursor is always null when searchTerm is set."
method: GET
path: "/assets"
tags: ["Assets"]
---

# List assets. Pass next_cursor back as cursor to read the next page; semantic searches return one ranked page, so next_cursor is always null when searchTerm is set.

`GET /assets`

**Beta** — this endpoint may change before general availability.

## Query parameters

- `projectId` string, uuid, required
- `tags` string[]
- `searchTerm` string
- `type` 'image' | 'video' | 'font' | 'document' | 'audio' — AssetType
- `status` 'approved' | 'draft' | 'archived' — AssetStatusFilter
- `label` string
- `limit` integer
- `cursor` string — Opaque cursor from next_cursor. Ignored when searchTerm is set because semantic search returns one ranked page.

## Headers

- `Replo-Api-Version` '2026-08-21', required

## Response `200`

List assets. Pass next_cursor back as cursor to read the next page; semantic searches return one ranked page, so next_cursor is always null when searchTerm is set.

- object
  - `object` 'list', required
  - `data` object[], required
    - `object` 'asset', required
    - `id` string, required
    - `name` string, required
    - `url` string, required
    - `type` 'image' | 'video' | 'font' | 'document' | 'audio', required — AssetType
    - `altText` string, nullable, required
    - `label` string, nullable, required
    - `tags` string[], required
    - `fileExtension` string, required
    - `sizeBytes` number, required
    - `width` number, nullable, required
    - `height` number, nullable, required
    - `createdAt` string, required
    - `updatedAt` string, required
  - `has_more` boolean, required
  - `next_cursor` string, nullable, required

## Other responses

- `400` — Invalid request.
- `401` — Missing or invalid Replo Public API token.
- `403` — You are not authorized to access this resource.
- `404` — Not Found
- `409` — The resource is in a conflicting state.
- `429` — Too many requests. Please retry after the time indicated by the Retry-After header.
- `500` — An internal error occurred.
- `503` — Service temporarily unavailable.

---

[API](https://skmtc.dev/replo/apis/replo-public-api.md) · [All operations](https://skmtc.dev/replo/apis/replo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/replo/replo-public-api/revisions/6f031f6819f4/schema)
