Get exchange rates
Use POST /v2/currencies/rates instead.
/v2/currencies/pairs is a legacy endpoint for retrieving available currency pairs and exchange rates. Use /v2/currencies/rates instead for new integrations.Migrating to /v2/currencies/rates- Replace calls to
/v2/currencies/pairswith/v2/currencies/rates - The
/v2/currencies/ratesendpoint provides the same currency pair information, with more consistent behavior —rate_fromis always1, and it’s possible to look up a specific fiat-to-crypto pair by filtering on bothcurrency_fromandcurrency_to - Response structure is compatible - minimal changes required; see the response fields below for the specific behavior differences to account for when migrating
Headers
Hex-encoded HMAC-SHA512 signature of the request body, generated using your secret key.
Body
Currency to exchange from. Matched case-insensitively; leading/trailing whitespace is ignored; an empty string or null is treated the same as omitting the field. For a list of all available currencies, see API currency codes.
Currency to exchange to. Matched case-insensitively; leading/trailing whitespace is ignored; an empty string or null is treated the same as omitting the field. For a list of all available currencies, see API currency codes.
Response
OK. Returns the available exchange pairs, including currency metadata and the conversion rate.
List of matching currency pairs. Empty if currency_from/currency_to is a recognized currency code with no configured trading pairs.