Get list of available currencies for depositing/withdrawing
Last updated 11 months ago
Request success indicator
Response body when requesting available coins
const response = await fetch('https://app.apollopayment.io/api-gateway/available-currencies', { method: 'POST', headers: { "Content-Type": "application/json" }, }); const data = await response.json();
{ "success": false, "response": [ { "currency": "USDT", "alias": "Ethereum", "allowDeposit": false, "allowWithdrawal": false, "priceUSD": "1.00", "networks": [ { "name": "ethereum", "alias": "Ethereum", "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", "addressRegex": "^0x[a-fA-F0-9]{40}$", "tagRegex": "null", "allowDeposit": false, "allowWithdrawal": false, "allowCrosschainBridge": false, "allowCrosschainSwapFrom": false, "allowCrosschainSwapTo": false, "allowAutoSwapFrom": false, "allowAutoSwapTo": false, "withdrawalFee": "4.6", "withdrawalMin": "2", "confirmations": "4000.00", "underMaintenance": "4000.00" } ] } ] }