Retrieve Currency Rates

GET /currencies/rates

Returns a complete list of currency rates.

Headers

Name
Value

Content-Type

application/json

Response

[
  {
    "name": "USDTBEP20",
    "rate": 1
  },
  ...
  {
    "name": "BNB",
    "rate": 672
  }
  ...
]

Examples

curl -X GET "https://api.nord-pay.com/currencies/rates" \
     -H "Content-Type: application/json"

Last updated