Get information about supported currencies and tokens.
GET /api/v1/finance/currencies
Returns details about supported currencies including symbol, contract address, network, and whether the currency is enabled for swaps (bridgeable).
Parameters
Query
| Name | Type | Required | Description |
|---|---|---|---|
network | string | No | Filter by network |
symbol | string | No | Filter by currency symbol (e.g. EURC, USDC) |
address | string | No | Filter by contract address |
srcNetwork | string | No | Source network for routing queries |
srcSymbol | string | No | Source currency symbol for routing queries |
srcAddress | string | No | Source contract address for routing queries |
dstNetwork | string | No | Destination network for routing queries |
dstSymbol | string | No | Destination currency symbol for routing queries |
dstAddress | string | No | Destination contract address for routing queries |
limit | integer | No | Number of items (default 1000) |
offset | integer | No | Pagination offset |
Request example
Response
Returns an array of currency objects. Currency object:| Field | Type | Description |
|---|---|---|
symbol | string | Currency symbol (e.g. USDC) |
network | string | Blockchain network |
address | string | Contract address on-chain |
decimals | integer | Token decimals |
bridgeable | boolean | Whether the currency can be swapped/bridged |
enabled | boolean | Whether the currency is active |