Query current exchange rates. Supports pairs: USDT/USD, USDC/USD.
Request
Add parameter in header x-signature
Example:x-signature: ********************
or
Body Params application/json
{
"merchantId": "string",
"orderType": "DEPOSIT_FIAT",
"pairs": "string"
}
Request Code Samples
curl --location --request GET '/api/v2/system/rates' \
--header 'x-app-id;' \
--header 'x-timestamp: 0' \
--header 'x-nonce;' \
--header 'x-request-id;' \
--header 'x-lang;' \
--header 'x-signature: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"merchantId": "string",
"orderType": "DEPOSIT_FIAT",
"pairs": "string"
}'
Responses
Rates retrieved successfully
{
"success": true,
"requestId": "string",
"timestamp": "2019-08-24T14:15:22.123Z",
"data": [
{
"base": "USDT",
"quote": "USDT",
"pair": "USDT/USD",
"rate": "string",
"timestamp": "2019-08-24T14:15:22.123Z"
}
]
}
Modified at 2026-01-27 07:10:11