Retrieve Currency List

GET /currencies/

Returns a complete list of available currencies.

Headers

Name
Value

Content-Type

application/json

Response

[
  {
    "name": "USDTBEP20",
    "token": "USDT",
    "network": "BEP20",
    "contract": "0x55d398326f99059fF775485246999027B3197955",
    "decimals": 18,
    "confirmations": 5,
    "network_fee": 0.0,
    "min_deposit": 1.0,
    "is_available": true,
    "can_withdraw": true,
    "min_withdraw": 1,
    "rate": 1
  },
  ...
  {
    ...
  }
]

Examples

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

Last updated