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": 3,
                    "withdrawFee": 0.0006,
                    "withdrawMin": 8.0e-5
                }
            }
        },
        "ETH": {
            "symbol": "ETH",
            "name": "Ethereum",
            "status": true,
            "networkList": {
                "ERC20": {
                    "network": "ERC20",
                    "name": "Ethereum network",
                    "minConfirm": 3,
                    "withdrawFee": 0.0024,
                    "withdrawMin": 0.005
                }
            }
        },
        "USDC": {
            "symbol": "USDC",
            "name": "USD Coin",
            "status": true,
            "networkList": {
                "ERC20": {
                    "network": "ERC20",
                    "name": "Ethereum (ERC20)",
                    "minConfirm": 3,
                    "withdrawFee": 8,
                    "withdrawMin": 5
                }
            }
        },
        "TRX": {
            "symbol": "TRX",
            "name": "Tron",
            "status": true,
            "networkList": {
                "TRC20": {
                    "network": "TRC20",
                    "name": "Tron network",
                    "minConfirm": 15,
                    "withdrawFee": 1,
                    "withdrawMin": 0.0001
                }
            }
        },
        "USDT": {
            "symbol": "USDT",
            "name": "Tether",
            "status": true,
            "networkList": {
                "TRC20": {
                    "network": "TRC20",
                    "name": "Tron (TRC20)",
                    "minConfirm": 15,
                    "withdrawFee": 1,
                    "withdrawMin": 0.01
                },
                "BEP20": {
                    "network": "BEP20",
                    "name": "BNB Smart Chain (Bep20)",
                    "minConfirm": 3,
                    "withdrawFee": 1,
                    "withdrawMin": 1
                },
                "ERC20": {
                    "network": "ERC20",
                    "name": "Ethereum (ERC20)",
                    "minConfirm": 3,
                    "withdrawFee": 8,
                    "withdrawMin": 5
                },
                "Polygon": {
                    "network": "Polygon",
                    "name": "Polygon",
                    "minConfirm": 50,
                    "withdrawFee": 1,
                    "withdrawMin": 0.01
                }
            }
        },
        "BNB": {
            "symbol": "BNB",
            "name": "BNB",
            "status": true,
            "networkList": {
                "BEP20": {
                    "network": "BEP20",
                    "name": "BNB Smart Chain (Bep20)",
                    "minConfirm": 3,
                    "withdrawFee": 0.00014,
                    "withdrawMin": 0.004
                }
            }
        },
        "BUSD": {
            "symbol": "BUSD",
            "name": "Binance USD",
            "status": true,
            "networkList": {
                "BEP20": {
                    "network": "BEP20",
                    "name": "BNB Smart Chain (Bep20)",
                    "minConfirm": 3,
                    "withdrawFee": 0.25,
                    "withdrawMin": 0.01
                }
            }
        },
        "DOGE": {
            "symbol": "DOGE",
            "name": "Dogecoin",
            "status": true,
            "networkList": {
                "Dogecoin": {
                    "network": "Dogecoin",
                    "name": "Dogecoin network",
                    "minConfirm": 3,
                    "withdrawFee": 0.01,
                    "withdrawMin": 0.0001
                }
            }
        },
        "LTC": {
            "symbol": "LTC",
            "name": "Litecoin",
            "status": true,
            "networkList": {
                "Litecoin": {
                    "network": "Litecoin",
                    "name": "Litecoin network",
                    "minConfirm": 3,
                    "withdrawFee": 4.5e-5,
                    "withdrawMin": 0.002
                }
            }
        },
        "DGB": {
            "symbol": "DGB",
            "name": "DigiByte",
            "status": true,
            "networkList": {
                "DigiByte": {
                    "network": "DigiByte",
                    "name": "Digibyte network",
                    "minConfirm": 10,
                    "withdrawFee": 0.005,
                    "withdrawMin": 0.05
                }
            }
        },
        "XMR": {
            "symbol": "XMR",
            "name": "Monero",
            "status": true,
            "networkList": {
                "Monero": {
                    "network": "Monero",
                    "name": "Monero network",
                    "minConfirm": 3,
                    "withdrawFee": 6.0e-5,
                    "withdrawMin": 0.0001
                }
            }
        },
        "TON": {
            "symbol": "TON",
            "name": "Toncoin",
            "status": true,
            "networkList": {
                "Ton": {
                    "network": "Ton",
                    "name": "The Open Network (TON)",
                    "minConfirm": 3,
                    "withdrawFee": 0.02,
                    "withdrawMin": 0.05
                }
            }
        },
        "MATIC": {
            "symbol": "MATIC",
            "name": "Polygon",
            "status": true,
            "networkList": {
                "Polygon": {
                    "network": "Polygon",
                    "name": "Polygon",
                    "minConfirm": 50,
                    "withdrawFee": 0.05,
                    "withdrawMin": 0.1
                }
            }
        }
    }
}

Last updated