Skip to main content
GET
/
currencies
Currency Search (Typeahead)
curl --request GET \
  --url http://localhost:8000/v2/currencies \
  --header 'X-API-KEY: <api-key>'
{
  "currencies": [
    {
      "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
      "chain_id": 1,
      "decimals": 6,
      "id": "ethereum:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
      "image_uri": "https://...",
      "name": "USD Coin",
      "price_usd": 1,
      "symbol": "USDC",
      "verified": true
    }
  ],
  "has_more": false
}

Documentation Index

Fetch the complete documentation index at: https://docs.coinvoyage.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Headers

X-API-KEY
string
required

API key for authentication

Query Parameters

q
string
required

Search query (symbol, name fragment, or address prefix). Minimum 2 characters.

Minimum string length: 2
chain_ids
string

Comma-separated ChainID filter; intersected with the set of chains we can route across.

limit
integer
default:20

Maximum results to return (default 20, max 50).

Required range: 1 <= x <= 50

Response

Ranked currency matches (exact symbol → prefix → name → substring → address-prefix). May be empty.

currencies
object[]
required
has_more
boolean
required
Example:

false