API Reference
Get exchange rate by currency [GET]

Get Currency Exchange Rate

https://sandboxapi.bitnob.co/api/v1/wallets/payout/rate/{currency} (opens in a new tab)

Path Parameters

ParametertypeRequired
currency Defaults to USDstring

Request

Exchange Rates/Get all exchange rates [GET]
curl --request GET \
     --url https://sandboxapi.bitnob.co/api/v1/wallets/payout/rate/USD \
     --header 'accept: application/json'

Responses

🟢 200 - Result example
{
"status": true,
"message": "successfully fetched exchange rate",
"data": {
  "code": "USD",
  "name": "US Dollar",
  "rate": 37171.53
}
}