Skip to main content
GET
/
account
/
wallet
Get Wallet
curl --request GET \
  --url https://api.fyatu.com/api/v3/account/wallet \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "message": "Wallet information retrieved successfully",
  "data": {
    "balance": {
      "available": 1500,
      "hold": 100,
      "total": 1600,
      "currency": "USD"
    },
    "deposit": {
      "addresses": {
        "TRC20": {
          "address": "TRC20_ADDRESS_HERE",
          "networks": [
            "TRON"
          ],
          "currencies": [
            "USDT",
            "USDC"
          ]
        },
        "ERC20": {
          "address": "0xERC20_ADDRESS_HERE",
          "networks": [
            "ETH",
            "BSC",
            "POLYGON",
            "ARBITRUM",
            "AVALANCHE"
          ],
          "currencies": [
            "USDT",
            "USDC"
          ]
        }
      },
      "supportedCurrencies": [
        "USDT",
        "USDC"
      ],
      "supportedNetworks": [
        "TRON",
        "ETH",
        "BSC",
        "POLYGON",
        "ARBITRUM",
        "AVALANCHE"
      ]
    },
    "withdrawal": {
      "address": "TYourTronAddressHere1234567890123",
      "currency": "USDT",
      "network": "TRON",
      "isVerified": true,
      "addedAt": "2026-01-05T10:30:00+00:00"
    }
  },
  "meta": {
    "requestId": "req_abc123def456",
    "timestamp": "2026-01-05T10:30:00+00:00"
  }
}

Overview

Retrieve your business wallet information including:
  • Balance: Available, hold, and total amounts in USD
  • Deposit Addresses: TRC20 and ERC20 addresses for receiving crypto deposits
  • Withdrawal Address: Your configured USDT withdrawal destination

Response Details

Balance Object

FieldTypeDescription
availablenumberBalance available for use (total - hold)
holdnumberAmount currently on hold for pending operations
totalnumberTotal account balance
currencystringAlways USD

Deposit Addresses

The deposit object contains:
  • TRC20 Address: For deposits on TRON network
  • ERC20 Address: For deposits on ETH, BSC, Polygon, Arbitrum, Avalanche networks
Both address types accept USDT and USDC.
If you don’t have a deposit address yet, use the Generate Deposit Address endpoint to create one.

Withdrawal Address

Returns null if no withdrawal address is configured. Otherwise includes:
FieldTypeDescription
addressstringThe USDT wallet address
networkstringTRC20 or ERC20
isVerifiedbooleanWhether the address is verified for withdrawals
addedAtdatetimeWhen the address was registered

Example Usage

const response = await fetch('https://api.fyatu.com/api/v3/account/wallet', {
  headers: {
    'Authorization': `Bearer ${accessToken}`
  }
});

const { data } = await response.json();

console.log(`Available: $${data.balance.available}`);
console.log(`TRC20 Address: ${data.deposit.addresses.TRC20?.address}`);

Authorizations

Authorization
string
header
required

JWT access token obtained from /auth/token

Response

Wallet information retrieved successfully

success
boolean
Example:

true

status
integer
Example:

200

message
string
data
object
meta
object