Search
Global semantic search across tokens, blocks, transactions, proposals, pools, and addresses.
Global Search
GET
/v1/search?query=<search_term>Smart routing heuristics determine which entity types to query based on the input pattern. All searches run in parallel.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| query | string | REQUIRED | β | Search term (minimum 1 char) |
πͺ Usage & Credits
This endpoint consumes 250 credits per request against your active API tier.
Notes
- Numeric input β searches Blocks by height
- Hex string (β₯8 chars) β searches Blocks by hash + Transactions
- Base58 (β₯20 chars) β searches Tokens (exact PK) + Address
- Pool ID format (_ and +) β searches DEX Pools
- Short text β fuzzy searches Tokens, Proposals, Pools
Response
json
{
"found": "integer",
"results": [
{
"type": "string",
"id": "string",
"name": "string *",
"icon": "string *",
"height": "integer *",
"extra": "string *"
}
]
}Errors
| Status | Condition |
|---|---|
| 400 | Missing query parameter |