EQGate

Check Address Status

Check the status and transactions of a deposit address

Check Address Status

Retrieve the current status and transaction history for a deposit address.

GET /v1/{chain}/{token}/status/{address}

Path Parameters

ParameterTypeDescription
chainstringBlockchain network: tron or bsc
tokenstringToken type: usdt or usdc
addressstringThe deposit address to check

Example Request

curl "https://api.eqgate.com/v1/tron/usdt/status/TXabc123def456..." \
  -H "X-API-Key: your_api_key"

Response

{
  "status": "success",
  "address": "TXabc123def456ghi789jkl012mno345pqr678",
  "chain": "TRON",
  "token": "USDT",
  "address_status": "FUNDED",
  "expected_amount": 100,
  "total_received": 100,
  "total_fees": 1,
  "net_amount": 99,
  "transactions": [
    {
      "id": "tx_abc123",
      "tx_hash": "0x1234567890abcdef...",
      "amount": 100,
      "amount_usd": 100,
      "fee": 1,
      "net_amount": 99,
      "status": "COMPLETED",
      "confirmations": 19,
      "created_at": "2024-01-15T11:30:00.000Z"
    }
  ],
  "expires_at": "2024-01-15T12:00:00.000Z",
  "created_at": "2024-01-15T11:00:00.000Z"
}

Address Status Values

StatusDescription
PENDINGWaiting for deposit
FUNDEDDeposit received, awaiting sweep
COMPLETEDFunds forwarded to your wallet
EXPIREDAddress expired without deposit

On this page