Specific Token Balance#
Query the balance of a specific token under an address.
Request Path#
POST https://web3.okx.com/api/v5/wallet/asset/token-balances-by-address
Request Parameters#
| Parameter | Type | Required | Description | 
|---|---|---|---|
| address | String | Yes | Address | 
| tokenAddresses | Array | Yes | List of tokens addresses to query. Maximum of 20 items. | 
| >chainIndex | String | Yes | Unique identifier for the chain | 
| >tokenAddress | String | Yes | Token address. 1: Pass an empty string""to query the native token of the corresponding chain.2: Pass the specific token contract address to query the corresponding token.3: Different inscription tokens are passed in the following formats:FBRC-20: Usefbtc_fbrc20_name, such asfbtc_fbrc20_babymuskBRC-20: Usebtc-brc20-tick(name), such asbtc-brc20-ordiRunes: Usebtc-runesMain-tickId, such asbtc-runesMain-840000:2SRC-20: Usebtc-src20-name, such asbtc-src20-utxo | 
| filter | String | No | 0: Filter out risky airdrop tokens1: Do not filter out risky airdrop tokensDefault is to filter | 
Response Parameters#
| Parameter | Type | Description | 
|---|---|---|
| tokenAssets | Array | List for token balances | 
| >chainIndex | String | Unique identifier for the chain | 
| >tokenAddress | String | Token address.If the return is an empty string "", it means the query is for the native token of the corresponding blockchain. | 
| >address | String | Address | 
| >symbol | String | Token symbol | 
| >balance | String | Token balance. | 
| >rawBalance | String | Raw balance of token address.More chains will be supported soon. For unsupported chains, this field is empty. | 
| >tokenPrice | String | Token price in USD | 
| >tokenType | String | Token type: 1: token2: inscription | 
| >transferAmount | String | The balance of BRC-20, FBRC-20, and other inscription assets that can be directly transferred or traded, commonly referred to as the transferable balance. | 
| >availableAmount | String | The amount of BRC-20, FBRC-20, and other inscription assets that need to complete the inscription process before they can be traded or transferred, usually referred to as the available balance or pending inscription balance. | 
| >isRiskToken | Boolean | true: flagged as a risk airdrop tokenfalse: not flagged | 
Request Example#
shell
curl --location --request POST 'https://web3.okx.com/api/v5/wallet/asset/token-balances' \
--header 'Content-Type: application/json' \
--header 'OK-ACCESS-PROJECT: 86af********d1bc' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z' \
--data-raw '{
    "address": "0x50c476a139aab23fdaf9bca12614cdd54a4244e3",
    "tokenAddresses": [
        {
            "chainIndex": "1",
            "tokenAddress": ""
        }
    ]
}'
Response Example#
200
{
    "code": "0",
    "msg": "success",
    "data": [
        {
            "tokenAssets": [
                {
                    "chainIndex": "1",
                    "tokenAddress": "",
                    "symbol": "eth",
                    "balance": "0",
                    "tokenPrice": "3640.43",
                    "tokenType": "1",
                    "isRiskToken": false,
                    "transferAmount": "0",
                    "availableAmount": "0",
                    "rawBalance": "",
                    "address": ""
                }
            ]
        }
    ]
}
