GET
/api/v1/assets/searchPublic (No auth required)Full-Text & Ranked Search
Full-text fuzzy search across titles, descriptions, and tags.
Description
Returns ranked search results matched using full-text index scoring.
Parameters
2 parameters| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| q | string | Required | — | Search query keywords. |
| limit | number | Optional | 20 | Max results. |
Request Example
curl "https://api.trykrafto.xyz/api/v1/assets/search?q=cyberpunk"Response Example
application/json (200 OK)
{
"query": "cyberpunk",
"count": 14,
"results": [
{
"id": "ast_neon_matrix",
"title": "Neon Matrix Font",
"score": 0.94
}
]
}