List currencies
List supported currencies with networks, directional transaction limits
(inbound / outbound), and capability flags (can_onramp, can_offramp,
can_deposit, can_convert). Flag meaning depends on type — see the API
overview.
Each row is unique by code plus country_code (for example every WAEMU
country has its own XOF entry with its own networks and limits). Use filters
to find currencies that support a given operation or network, then paginate
with page and per_page.
For which countries and networks we cover, start with GET /v1/countries. For
banks and mobile money operators (provider_id on fiat beneficiaries), use
GET /v1/countries/{country_code}/providers — not this resource.
Filter behavior
code— filter by ISO currency code (e.g.XOFreturns all WAEMU country rows).type—fiatorcrypto.country_code— filter by ISO 3166-1 alpha-2 country code.can_onramp— boolean. Currencies that can participate in onramps. For fiat, usable as onramp source; for crypto, as onramp destination.can_offramp— boolean. Currencies that can participate in offramps. For fiat, usable as offramp destination; for crypto, as offramp source.can_deposit— boolean. Currencies that can participate in deposits (typically crypto only).can_convert— boolean. Currencies that participate in wallet-to-wallet conversions.network— only currencies that include this network in theirnetworksarray.min_inbound_amount— decimal string. Only currencies where at least one network has inbound min less than or equal to this value.max_inbound_amount— decimal string. Only currencies where at least one network has inbound max greater than or equal to this value.min_outbound_amount— decimal string. Only currencies where at least one network has outbound min less than or equal to this value.max_outbound_amount— decimal string. Only currencies where at least one network has outbound max greater than or equal to this value.page— integer, 1-indexed page number.per_page— integer page size (max 200).
Example
GET /v1/currencies?type=fiat&can_offramp=true
Authorizations
API key issued during merchant onboarding.
Query Parameters
Response
Supported currencies fetched successfully