Get USDT receive address

Retrieve the static stablecoin (USDT) on-chain address for the authenticated account. Supports ETH and TRON chains.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Get your account's static USDT deposit address for a specific blockchain. Supports TRON (TRC-20) and Ethereum (ERC-20).

Example Request

# TRON address
curl "https://api.neutron.me/api/v2/account/stablecoin-onchain-address?walletCcy=USDT&chainId=TRON" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Ethereum address
curl "https://api.neutron.me/api/v2/account/stablecoin-onchain-address?walletCcy=USDT&chainId=ETH" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Query Parameters

ParameterRequiredValuesDescription
walletCcyUSDTStablecoin currency
chainIdTRON, ETHBlockchain network

Example Response

{
  "resultStatus": "success",
  "data": {
    "staticOnchainAddress": "TXYZabc123def456ghi789jkl012mno345",
    "walletCcy": "USDT",
    "chainId": "TRON",
    "accountId": "ne01-abc123def456"
  }
}

Supported Chains

ChainToken StandardAddress FormatTypical Confirmation Time
TRONTRC-20Starts with T~3 seconds
EthereumERC-20Starts with 0x~15 minutes

Important

  • Send only USDT to this address — sending other tokens may result in loss of funds
  • Match the chain — a TRON address cannot receive ERC-20 tokens and vice versa
  • The address is static and reusable for multiple deposits
  • Deposits are credited to your USDT wallet after on-chain confirmation

Related

Query Params
string
enum
required

Must be USDT

Allowed:
string
enum
required

Blockchain network

Allowed:
Response

Language
Credentials
Bearer
JWT
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json