v1

latestOpenAPI 3.0.02026-07-2613985.6 KB
Currencies

Get currency exchange rates

Get available currency pairs and exchange rates.

post/currencies/rates

Headers

X-Processing-Signaturestring required

Hex-encoded HMAC-SHA512 signature of the request body, generated using your secret key.

Request body

currency_fromstring

Currency to exchange from. For a list of all available currencies, see API currency codes.

currency_tostring

Currency to exchange to. For a list of all available currencies, see API currency codes.

Response

OK. Returns the available exchange pairs.

Example response

{
  "data": [
    {
      "currency_from": {
        "currency": "BTC",
        "type": "crypto",
        "min_amount": "0.00010000",
        "min_amount_deposit_with_exchange": "0.00020000"
      },
      "currency_to": {
        "currency": "ETH",
        "type": "crypto"
      }
    }
  ]
}