Catalog API
List assets
Paginated catalog listing with type, category, and full-text filters. Public — no auth required.
GET
/v1/assetsPath & query parameters
typestring (query) | STICKER | MUSIC | FONT | EFFECT | FILTER | TRANSITION | TEXT. Defaults to STICKER. |
categorystring (query) | Filter by category name, e.g. Retro. |
qstring (query) | Full-text search over asset names — max 120 chars. |
mimeTypestring (query) | Filter by file MIME type. |
effectKindstring (query) | Sub-filter for effect packages — max 64 chars. |
limitinteger (query) | Page size, 1–5000. Defaults to 100. |
offsetinteger (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?
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
}