1. Order
Aurpay API
  • Aurpay Crypto Payment Integration
  • API-Key Authentication Method
    • Order
      • Get Payment URL
      • Get Payment Info
      • Get Orders
      • Get Orders Details
      • Get Orders Refund Info
      • Orders Refund
      • Get Transaction
      • Get Support Crypto Currency List
      • Get Support Real Currency List
    • Wallets
      • Get Wallets List
      • Withdraw Balance
      • Get Self Custody Wallets
    • Bitcoin Lightning Network
      • Get BLN Balance
      • Create BLN Order
      • Create BLN Withdraw
    • Get API-Key
      POST
  • Signature Authentication Method
    • Order
      • Get Payment URL
        POST
      • Get Payment Info
        POST
      • Get Support Real Currency List
        GET
      • Get Support Crypto Currency List
        GET
      • Get Orders
        GET
      • Get Orders Details
        GET
      • Get Transaction
        GET
      • Get Orders Refund Info
        GET
      • Orders Refund
        POST
    • Wallets
      • Get Wallets List
      • Withdraw Balance
      • Get Self Custody Wallets
    • Bitcoin Lightning Network
      • Get BLN Balance
      • Create BLN Order
      • Create BLN Withdraw
  • Callbakc Description
    • Callback Authentication Method
  1. Order

Get Support Crypto Currency List

GET
/api/order/pay/crypto-currency
Get a list of supported fiat currencies.

Request

None

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://dashboard.aurpay.net/api/order/pay/crypto-currency'
Response Response Example
{
    "code": 0,
    "message": "ok",
    "data": [
        {
            "chain": "ETH",
            "currency": "ETH",
            "status": true
        },
        {
            "chain": "ETH",
            "currency": "USDT-ERC20",
            "status": true
        },
        {
            "chain": "ETH",
            "currency": "USDC-ERC20",
            "status": true
        },
        {
            "chain": "ETH",
            "currency": "DAI-ERC20",
            "status": true
        },
        {
            "chain": "BTC",
            "currency": "BTC",
            "status": true
        },
        {
            "chain": "BLN",
            "currency": "BTC-LN",
            "status": true
        },
        {
            "chain": "LTC",
            "currency": "LTC",
            "status": true
        },
        {
            "chain": "BSC",
            "currency": "BNB",
            "status": true
        },
        {
            "chain": "TRX",
            "currency": "USDT-TRC20",
            "status": true
        },
        {
            "chain": "TRX",
            "currency": "USDC-TRC20",
            "status": true
        }
    ],
    "result": true
}
Previous
Get Support Real Currency List
Next
Get Orders
Built with