Skip to content

GET /exchange-rate/{currency}/list

Returns a list of exchange rates for the specified currency. This is the only GET endpoint in the Cryptomus adapter. The sign header is computed over an empty {} body. Requires authentication.

GET /exchange-rate/{currency}/list
ParameterTypeDescription
currencystringThe base currency code (e.g., USDT)
Terminal window
# Sign is computed over empty body: MD5(base64("{}") + API_KEY)
curl https://api.nearpayments.io/cryptomus/v1/exchange-rate/USDT/list \
-H "merchant: YOUR_MERCHANT_UUID" \
-H "sign: COMPUTED_SIGN"
{
"state": 0,
"result": [
{
"from": "USDT",
"to": "BTC",
"course": "0.00001050"
},
{
"from": "USDT",
"to": "ETH",
"course": "0.00032500"
},
{
"from": "USDT",
"to": "LTC",
"course": "0.01120000"
}
]
}