Cryptoclaw binance-address-info
Binance Web3 official skill — query any wallet address for token holdings, balances, and portfolio data across BSC, Base, and Solana. Sourced from github.com/binance/binance-skills-hub.
install
source · Clone the upstream repo
git clone https://github.com/TermiX-official/cryptoclaw
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/TermiX-official/cryptoclaw "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/binance-address-info" ~/.claude/skills/termix-official-cryptoclaw-binance-address-info && rm -rf "$T"
manifest:
skills/binance-address-info/SKILL.mdsource content
Binance Address Info
Official Binance Web3 skill for querying on-chain wallet token holdings and portfolio positions.
Source: binance/binance-skills-hub
Supported Chains
| Chain | chainId |
|---|---|
| BSC | 56 |
| Base | 8453 |
| Solana | CT_501 |
API — Active Token Positions
GET https://web3.binance.com/bapi/defi/v3/public/wallet-direct/buw/wallet/address/pnl/active-position-list ?address=<wallet_address> &chainId=<chainId> &offset=0 # pagination offset
Response Fields
Per token holding:
| Field | Description |
|---|---|
| Token contract address |
| Full token name |
| Token ticker |
| Token icon (prepend ) |
| Token decimal places |
| Current price in USD (string) |
| 24-hour price change percentage (string) |
| Amount held by the wallet (string) |
| Chain identifier |
| Queried wallet address |
Notes
- All numeric fields (
,priceUsd
,priceChange24h
) are returned as strings — convert for calculationsquantity - Icon URLs require prefix:
https://bin.bnbstatic.com - Use
for pagination when a wallet holds many tokensoffset - No authentication required — public endpoint
Usage Examples
User: What tokens does this wallet hold? 0xabc... → GET address:0xabc..., chainId:56 User: Show me my Solana portfolio → GET address:<solana_address>, chainId:CT_501 User: What's the total USD value of this wallet on Base? → GET all positions on Base, sum (quantity × priceUsd) User: Is this wallet holding any risky tokens? → GET positions, then run binance-token-audit on each contract
Combined Use Cases
Pair with other Binance skills for deeper analysis:
— audit each held token for safetybinance-token-audit
— get detailed metadata for any holdingbinance-token-info
— check if smart money is buying/selling held tokensbinance-trading-signal