Add Asset
Add a token to an account
Add Asset
Add a token (native or contract-based) to an account. Asset configuration — contract address, decimals, asset type — is resolved automatically by the system.ETH, TRX, USDT, USDC, BNB, MATIC, BTC, SOL.ethereum, bsc, polygon, arbitrum, optimism, avalanche, or base. For non-EVM accounts, omit this field.Response
| Field | Type | Description |
|---|---|---|
asset_type | string | NATIVE, ERC20, BEP20, TRC20 |
balance | string | Available balance (decimal string) |
locked_balance | string | Locked balance (decimal string) |
contract_address | string | Token contract address (0x for native assets) |
Errors
| HTTP | Code | Condition |
|---|---|---|
| 400 | invalid_parameter | Invalid parameters or unsupported symbol |
| 404 | not_found | Account not found |
| 400 | asset_already_exists | Asset already added to this account |
| 400 | account_not_active | Account is not active |
Authorizations
JWT access token obtained from the /api/v1/auth/token endpoint.
Body
The account ID to add the asset to.
36The token symbol.
ETH, TRX, USDT, USDC, BNB, MATIC, BTC, SOL Enabled chain name. Required for EVM accounts so the gateway can resolve the specific asset chain.
Response
Asset added successfully.
Unique identifier for the asset.
"ast_r1s2t3u4v5"
The account ID this asset belongs to.
"acc_m1n2o3p4q5"
The wallet ID this asset belongs to.
"wal_a1b2c3d4e5f6"
The client ID that owns this asset.
"cli_x1y2z3"
Asset chain returned by the gateway.
"ethereum"
Asset network returned by the gateway.
"mainnet"
The token symbol.
"USDT"
The full name of the token.
"Tether USD"
The number of decimal places for the token.
6
The type of the asset based on its token standard.
NATIVE, ERC20, BEP20, TRC20 "ERC20"
The current available balance.
"1000.50"
The amount currently locked in pending transactions.
"0.00"
Whether the asset is currently active.
true
Timestamp when the asset was added.
"2026-01-15T10:40:00Z"
The smart contract address for the token. Null for native tokens.
"0xdAC17F958D2ee523a2206206994597C13D831ec7"