Skip to content

GET /common/currencies

Returns a map of cryptocurrency symbols to their configuration, including supported networks with fee and confirmation details. No authentication required.

GET /common/currencies
Terminal window
curl https://api.nearpayments.io/oxapay/v1/common/currencies
{
"data": {
"BTC": {
"symbol": "BTC",
"name": "Bitcoin",
"status": true,
"networks": {
"BTC": {
"network": "BTC",
"name": "Bitcoin",
"required_confirmations": 2,
"withdraw_fee": 0.0001,
"withdraw_min": 0.001,
"deposit_min": 0.0001,
"static_fixed_fee": 0.00005
}
}
},
"ETH": {
"symbol": "ETH",
"name": "Ethereum",
"status": true,
"networks": {
"ETH": {
"network": "ETH",
"name": "Ethereum",
"required_confirmations": 12,
"withdraw_fee": 0.002,
"withdraw_min": 0.01,
"deposit_min": 0.001,
"static_fixed_fee": 0.001
}
}
}
},
"message": "Operation completed successfully!",
"error": {},
"status": 200,
"version": "1.0.0"
}