Skip to main content
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

NameTypeRequiredDescription
networkstringNoFilter by network
symbolstringNoFilter by currency symbol (e.g. EURC, USDC)
addressstringNoFilter by contract address
srcNetworkstringNoSource network for routing queries
srcSymbolstringNoSource currency symbol for routing queries
srcAddressstringNoSource contract address for routing queries
dstNetworkstringNoDestination network for routing queries
dstSymbolstringNoDestination currency symbol for routing queries
dstAddressstringNoDestination contract address for routing queries
limitintegerNoNumber of items (default 1000)
offsetintegerNoPagination offset

Request example

curl --request GET 'https://payments.bleepay.com/api/v1/finance/currencies?network=polygon&symbol=EURC' \
  --header 'Content-Type: application/json'

Response

Returns an array of currency objects. Currency object:
FieldTypeDescription
symbolstringCurrency symbol (e.g. USDC)
networkstringBlockchain network
addressstringContract address on-chain
decimalsintegerToken decimals
bridgeablebooleanWhether the currency can be swapped/bridged
enabledbooleanWhether the currency is active

Example response

[
  {
    "symbol": "EURC",
    "network": "polygon",
    "address": "0x73b3db5a96a4b9d9bcfc22b8f1b3d85a5e5b5e5b",
    "decimals": 6,
    "bridgeable": true,
    "enabled": true
  }
]