Loading...
Loading...
Query any on-chain wallet address token balances and positions. Retrieves all token holdings for a specified wallet address on a given chain, including token name, symbol, price, 24h price change, and holding quantity. Use this skill when users ask about wallet balance, token holds, portfolio, or asset positions for any blockchain address.
npx skill4agent add binance/binance-skills-hub query-address-infohttps://web3.binance.com/bapi/defi/v3/public/wallet-direct/buw/wallet/address/pnl/active-position-list| Parameter | Type | Required | Description |
|---|---|---|---|
| address | string | Yes | Wallet address, e.g., |
| chainId | string | Yes | Chain ID, e.g., |
| offset | number | No | Pagination offset, default 0 |
clienttype: web
clientversion: 1.2.0
Accept-Encoding: identitycurl --location 'https://web3.binance.com/bapi/defi/v3/public/wallet-direct/buw/wallet/address/pnl/active-position-list?address=0x02e9b4708d41ca10632918edd9e94e21edd82ed1&chainId=56&offset=0' \
--header 'clienttype: web' \
--header 'clientversion: 1.2.0' \
--header 'Accept-Encoding: identity'{
"code": "000000",
"message": null,
"messageDetail": null,
"data": {
"offset": 0,
"addressStatus": null,
"list": [
{
"chainId": "56",
"address": "0x02e9b4708d41ca10632918edd9e94e21edd82ed1",
"contractAddress": "0xe97b7ba92e5058d0456894ff6f969683cfd44444",
"name": "The Giraffes",
"symbol": "GIRAFFES",
"icon": "/images/web3-data/public/token/logos/A0B22474BF610AE1646962D05D2BE933.png",
"decimals": 18,
"price": "0.0000045375251839978",
"percentChange24h": "6.84",
"remainQty": "20"
}
]
},
"success": true
}| Field | Type | Description |
|---|---|---|
| chainId | string | Chain ID |
| address | string | Wallet address |
| contractAddress | string | Token contract address |
| name | string | Token name |
| symbol | string | Token symbol |
| icon | string | Token icon URL path |
| decimals | number | Token decimals |
| price | string | Current price (USD) |
| percentChange24h | string | 24-hour price change (%) |
| remainQty | string | Holding quantity |
| Chain Name | chainId |
|---|---|
| BSC | 56 |
| Ethereum | 1 |
| Base | 8453 |
| Solana | CT_501 |
bin.bnbstatic.com