OxaPay Docs
Legacy
Legacy
  • Introduction
  • Getting Started
  • Integrations
    • Payment Links
    • Donations
    • Merchant API
    • Payout API
    • Plugins
      • WooCommerce
      • WISECP
      • Clientexec
      • Blesta
      • WHMCS
      • PrestaShop
      • Easy Digital Downloads
      • Paid Memberships Pro
      • Gravity Forms
      • Restrict Content Pro
    • Merchant and Payout Service with API
  • API Reference
    • Creating an Invoice
    • Creating White-Label Payment
    • Creating Static Wallet
    • Revoking Static Wallet
    • Static Wallets List
    • Payment Information
    • Payment History
    • Accepted Coins
    • Price
    • Creating Payout
    • Payout Information
    • Payout History
    • Account Balance
    • Exchange Rate
    • Exchange Calculate
    • Exchange Pairs
    • Exchange Request
    • Exchange History
    • Supported Currencies
    • Supported Fiat Currencies
    • Supported Networks
    • System Status
    • Result code table
    • Merchant status table
    • Payout status table
  • Webhook
  • Use Cases
  • Troubleshooting
Powered by GitBook
On this page
  1. API Reference

Supported Currencies

This API request will return a comprehensive list of supported currencies and their network details, including symbols, names, and withdrawal information. You can use this data to understand which networks are available for each currency, such as Bitcoin on the Bitcoin network, Ethereum on the Ethereum network, and so on.

By utilizing this API endpoint, you can stay up-to-date with the latest information on supported currencies and their respective networks, ensuring smooth and accurate transactions on OxaPay.

POST https://api.oxapay.com/api/currencies

{
  "result": integer, // The result code indicates the success or failure of the request.
  "message": string, // A message providing additional information about the result.
  "data": array of Object // An array containing the supported currencies in OxaPay. Each currency is represented as a object with minConfirm, withdrawFee, withdrawMin.
}

Sample output

{
    "result": 100,
    "message": "Successful operation",
    "data": {
        "BTC": {
            "symbol": "BTC",
            "name": "Bitcoin",
            "status": true,
            "networkList": {
                "Bitcoin": {
                    "network": "Bitcoin",
                    "name": "Bitcoin network",
                    "minConfirm": 2,
                    "withdrawFee": 9.0e-5,
                    "withdrawMin": 0.0008,
                    "depositMin": 0.0003,
                    "staticFixedFee": 1.5e-5
                }
            }
        },
        "ETH": {
            "symbol": "ETH",
            "name": "Ethereum",
            "status": true,
            "networkList": {
                "ERC20": {
                    "network": "ERC20",
                    "name": "Ethereum network",
                    "minConfirm": 10,
                    "withdrawFee": 0.0012,
                    "withdrawMin": 0.0001,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "USDC": {
            "symbol": "USDC",
            "name": "USD Coin",
            "status": true,
            "networkList": {
                "ERC20": {
                    "network": "ERC20",
                    "name": "Ethereum (ERC20)",
                    "minConfirm": 10,
                    "withdrawFee": 8,
                    "withdrawMin": 5,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "TRX": {
            "symbol": "TRX",
            "name": "Tron",
            "status": true,
            "networkList": {
                "TRC20": {
                    "network": "TRC20",
                    "name": "Tron network",
                    "minConfirm": 10,
                    "withdrawFee": 1,
                    "withdrawMin": 0.0001,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "BNB": {
            "symbol": "BNB",
            "name": "BNB",
            "status": true,
            "networkList": {
                "BEP20": {
                    "network": "BEP20",
                    "name": "BNB Smart Chain (Bep20)",
                    "minConfirm": 15,
                    "withdrawFee": 5.0e-5,
                    "withdrawMin": 0.0004,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "BUSD": {
            "symbol": "BUSD",
            "name": "Binance USD",
            "status": false,
            "networkList": {}
        },
        "DOGE": {
            "symbol": "DOGE",
            "name": "Dogecoin",
            "status": true,
            "networkList": {
                "Dogecoin": {
                    "network": "Dogecoin",
                    "name": "Dogecoin network",
                    "minConfirm": 12,
                    "withdrawFee": 0.01,
                    "withdrawMin": 0.0001,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "LTC": {
            "symbol": "LTC",
            "name": "Litecoin",
            "status": true,
            "networkList": {
                "Litecoin": {
                    "network": "Litecoin",
                    "name": "Litecoin network",
                    "minConfirm": 3,
                    "withdrawFee": 0.0001,
                    "withdrawMin": 0.002,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "DGB": {
            "symbol": "DGB",
            "name": "DigiByte",
            "status": true,
            "networkList": {
                "DigiByte": {
                    "network": "DigiByte",
                    "name": "Digibyte network",
                    "minConfirm": 50,
                    "withdrawFee": 0.005,
                    "withdrawMin": 0.05,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "XMR": {
            "symbol": "XMR",
            "name": "Monero",
            "status": true,
            "networkList": {
                "Monero": {
                    "network": "Monero",
                    "name": "Monero network",
                    "minConfirm": 3,
                    "withdrawFee": 6.0e-5,
                    "withdrawMin": 0.0001,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "USDT": {
            "symbol": "USDT",
            "name": "Tether",
            "status": true,
            "networkList": {
                "BEP20": {
                    "network": "BEP20",
                    "name": "BNB Smart Chain (Bep20)",
                    "minConfirm": 15,
                    "withdrawFee": 0.25,
                    "withdrawMin": 0.01,
                    "depositMin": 0,
                    "staticFixedFee": 0
                },
                "ERC20": {
                    "network": "ERC20",
                    "name": "Ethereum (ERC20)",
                    "minConfirm": 10,
                    "withdrawFee": 8,
                    "withdrawMin": 1,
                    "depositMin": 0,
                    "staticFixedFee": 0
                },
                "TRC20": {
                    "network": "TRC20",
                    "name": "Tron (TRC20)",
                    "minConfirm": 10,
                    "withdrawFee": 1,
                    "withdrawMin": 0.01,
                    "depositMin": 0,
                    "staticFixedFee": 0.13
                },
                "Polygon": {
                    "network": "Polygon",
                    "name": "Polygon",
                    "minConfirm": 250,
                    "withdrawFee": 1,
                    "withdrawMin": 0.01,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "TON": {
            "symbol": "TON",
            "name": "Toncoin",
            "status": true,
            "networkList": {
                "Ton": {
                    "network": "Ton",
                    "name": "The Open Network (TON)",
                    "minConfirm": 3,
                    "withdrawFee": 0.02,
                    "withdrawMin": 0.05,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "MATIC": {
            "symbol": "MATIC",
            "name": "Polygon",
            "status": true,
            "networkList": {
                "Polygon": {
                    "network": "Polygon",
                    "name": "Polygon",
                    "minConfirm": 250,
                    "withdrawFee": 0.02,
                    "withdrawMin": 0.001,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "BCH": {
            "symbol": "BCH",
            "name": "Bitcoin Cash",
            "status": true,
            "networkList": {
                "BitcoinCash": {
                    "network": "BitcoinCash",
                    "name": "BitcoinCash",
                    "minConfirm": 4,
                    "withdrawFee": 6.0e-5,
                    "withdrawMin": 1.0e-5,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "SHIB": {
            "symbol": "SHIB",
            "name": "Shiba Inu",
            "status": true,
            "networkList": {
                "BEP20": {
                    "network": "BEP20",
                    "name": "BNB Smart Chain (Bep20)",
                    "minConfirm": 15,
                    "withdrawFee": 32000,
                    "withdrawMin": 10000,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        },
        "SOL": {
            "symbol": "SOL",
            "name": "Solana",
            "status": true,
            "networkList": {
                "Solana": {
                    "network": "Solana",
                    "name": "Solana network",
                    "minConfirm": 30,
                    "withdrawFee": 0.0005,
                    "withdrawMin": 0.01,
                    "depositMin": 0,
                    "staticFixedFee": 0
                }
            }
        }
    }
}
PreviousExchange HistoryNextSupported Fiat Currencies

Last updated 11 months ago