Account

Account Data Overview

Gets deposit address for given token

GET https://api.aio.exchange/api/v2/account/depositaddress/{tokenId}

This is a private endpoint. Provides the deposit address for all the available networks for given symbol

Path Parameters

// GET  Response

{
  "data": [
    {
      "symbol": "USDT",
      "memo": null,
      "network": "AVAXC",
      "networkName": "Avalanche C Chain",
      "contractAddress": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
      "depositFee": 0.000000,
      "withdrawFee": 0.036242,
      "minDeposit": 0.036242,
      "minWithdraw": 0.036242,
      "walletAddress": "0xD909Eb85f8382420798117165Ce1c1c200E5b65a",
      "isAvailable": true,
      "name": "Tether"
    },
    {
      "symbol": "USDT",
      "memo": null,
      "network": "BEP20",
      "networkName": "Binance Smart Chain",
      "contractAddress": "0x55d398326f99059ff775485246999027b3197955",
      "depositFee": 0.000000,
      "withdrawFee": 0.732676,
      "minDeposit": 0.732676,
      "minWithdraw": 0.732676,
      "walletAddress": "0x7CE90D7B1B85Aa3819F9AED34F8498a115A85B4f",
      "isAvailable": true,
      "name": "Tether"
    },
    {
      "symbol": "USDT",
      "memo": null,
      "network": "ERC20",
      "networkName": "Ethereum",
      "contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7",
      "depositFee": 0.000000,
      "withdrawFee": 1.743782,
      "minDeposit": 1.743782,
      "minWithdraw": 1.743782,
      "walletAddress": "0x28943786289171336Caa987c0aC7d07AcFb8E913",
      "isAvailable": true,
      "name": "Tether USDt"
    }
  ],
  "success": true,
  "timestamp": 1707726849953,
  "requestId": "bceba251-249b-4e21-b9e7-70549d563419",
  "message": "",
  "error": null
}

Last updated