latestOpenAPI 3.0.32026-08-106722.8 KB

7579ec027be7

Eligibility

Get currencies

Returns an array of all currencies enabled on your account. Contact your account executive to customise your account settings.

get/v1/currencies

Response

List of fiat and crypto currencies available for trading.

type'FIAT' | 'CRYPTO' required

Whether this is a fiat or crypto currency.

namestring required

Full name of the currency.

codestring required

Alphabetical ticker code for the currency. Case sensitive.

precisioninteger required

Number of decimal places supported. For example, BTC has precision 8 (smallest unit 0.00000001 BTC).

minBuyAmountstring

Minimum fiat amount allowed per order. Only present for fiat currencies.

maxBuyAmountstring

Maximum fiat amount allowed per order. Only present for fiat currencies.

networkstring

The blockchain network the currency runs on (e.g. BTC, ETH). Always null for fiat.

supportsDestinationTagboolean

Whether the currency supports destination tags or memo fields (e.g. XLM, XRP). Always null for fiat.

isSupportedInUSboolean

Whether purchases of this currency are supported in the US. Always null for fiat.

allowedUSStatesstring[]

US states where this currency can be purchased, using the last 2 characters of ISO 3166-2:US codes. Always null for fiat.

Example response

[
  {
    "type": "FIAT",
    "name": "US Dollar",
    "code": "USD",
    "precision": 2,
    "minBuyAmount": "20.00",
    "maxBuyAmount": "1200.00",
    "network": "BTC",
    "allowedUSStates": [
      "AL",
      "CT"
    ]
  }
]