LynCutLynCut

Catalog API

List assets

Paginated catalog listing with type, category, and full-text filters. Public — no auth required.

GET/v1/assets

Path & query parameters

type
string (query)
STICKER | MUSIC | FONT | EFFECT | FILTER | TRANSITION | TEXT. Defaults to STICKER.
category
string (query)
Filter by category name, e.g. Retro.
q
string (query)
Full-text search over asset names — max 120 chars.
mimeType
string (query)
Filter by file MIME type.
effectKind
string (query)
Sub-filter for effect packages — max 64 chars.
limit
integer (query)
Page size, 1–5000. Defaults to 100.
offset
integer (query)
Pagination offset. Defaults to 0.

Request

curl "https://api.lyncut.com/v1/assets?type=FILTER&category=Retro&limit=50"

Response

{
  "data": [
    {
      "id": "ast_17e2...",
      "name": "Retro Warm",
      "type": "FILTER",
      "category": "Retro",
      "mimeType": "application/zip",
      "previewUrl": "https://cdn.lyncut.com/previews/ast_17e2.webp"
    }
  ],
  "total": 20,
  "hasMore": false
}

Was this page helpful?