GET
/api/v1/assetsPublic (No auth required)List / Browse Assets
Paginated browsing of published creative assets.
Description
Returns paginated list of assets with category, pricing, tier requirement, and sorting options.
Parameters
5 parameters| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| category | string | Optional | — | Category slug filter. |
| tier | string | Optional | — | Filter by tier (free, go, pro, vip). |
| page | number | Optional | 1 | Page index. |
| limit | number | Optional | 20 | Results per page (max 50). |
| sort | 'popular' | 'newest' | 'price_asc' | 'price_desc' | Optional | 'popular' | Ordering criteria. |
Request Example
curl "https://api.trykrafto.xyz/api/v1/assets?category=fonts&limit=10"Response Example
application/json (200 OK)
{
"total": 210,
"page": 1,
"items": [
{
"id": "ast_neon_matrix",
"title": "Neon Matrix Font",
"priceINR": 499,
"tierRequirement": "pro"
}
]
}