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) |
| includeSpam | boolean | optional | false | Set to true to include token results classified as likely spam |
| hideSpam | boolean | optional | true | Set to false to include token results classified as likely spam |
πͺ Usage & Credits
This endpoint consumes 250 credits per request against your active API tier.
Notes
- Likely spam token results are hidden by default. Use `includeSpam=true` or `hideSpam=false` to include them.
- 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 *",
"spamLikely": "boolean *"
}
]
}Errors
| Status | Condition |
|---|---|
| 400 | Missing query parameter |