v1
latestOpenAPI 3.1.02026-07-1325128129.5 KBsearch
Currency Search (Typeahead)
Token search / typeahead for source and destination pickers. Filtered to chains we can quote against. Cacheable for 5 minutes (Cache-Control: max-age=300). Queries shorter than 2 characters return an empty list.
get/search/currencies
Query parameters
qstring required
Search query (symbol, name fragment, or address prefix). Minimum 2 characters.
chain_idsstring
Comma-separated ChainID filter; intersected with the set of chains we can route across.
limitinteger
Maximum results to return (default 20, max 50).
Headers
X-API-KEYstring required
API key for authentication
Response
Ranked currency matches (exact symbol → prefix → name → substring → address-prefix). May be empty.
Example response
{
"currencies": [
{
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"chain_id": 1,
"decimals": 6,
"id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48:1",
"image_uri": "https://...",
"name": "USD Coin",
"price_usd": 1,
"symbol": "USDC"
}
]
}