binance-address-info
$
npx mdskill add TermiX-official/cryptoclaw/binance-address-infoQuery wallet token holdings and portfolio data across BSC, Base, and Solana chains.
- Helps retrieve on-chain token balances and positions for any wallet address.
- Integrates with Binance Web3 API to fetch data from supported blockchain networks.
- Uses chain-specific IDs and pagination to fetch and organize token information.
- Presents results with token details like contract address, name, symbol, and price.
SKILL.md
.github/skills/binance-address-infoView on GitHub ↗
---
name: binance-address-info
description: 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.
metadata: { "cryptoclaw": { "emoji": "👛", "always": false } }
---
# Binance Address Info
Official Binance Web3 skill for querying on-chain wallet token holdings and portfolio positions.
> Source: [binance/binance-skills-hub](https://github.com/binance/binance-skills-hub/tree/main/skills/binance-web3/query-address-info)
## 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 |
| ----------------- | ------------------------------------------------ |
| `contractAddress` | Token contract address |
| `tokenName` | Full token name |
| `tokenSymbol` | Token ticker |
| `iconUrl` | Token icon (prepend `https://bin.bnbstatic.com`) |
| `decimals` | Token decimal places |
| `priceUsd` | Current price in USD (string) |
| `priceChange24h` | 24-hour price change percentage (string) |
| `quantity` | Amount held by the wallet (string) |
| `chainId` | Chain identifier |
| `walletAddress` | Queried wallet address |
## Notes
- All numeric fields (`priceUsd`, `priceChange24h`, `quantity`) are returned as strings — convert for calculations
- Icon URLs require prefix: `https://bin.bnbstatic.com`
- Use `offset` for pagination when a wallet holds many tokens
- 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:
- `binance-token-audit` — audit each held token for safety
- `binance-token-info` — get detailed metadata for any holding
- `binance-trading-signal` — check if smart money is buying/selling held tokens
More from TermiX-official/cryptoclaw
- aave-bscInteract with Aave V3 lending protocol on BNB Smart Chain (BSC).
- agent-identityRegister and manage on-chain AI agent identity via ERC-8004.
- agentic-commerceCreate, fund, and settle on-chain agent jobs via ERC-8183 Agentic Commerce Protocol.
- binance-market-rankBinance Web3 official skill — crypto market rankings including trending tokens, smart money inflow, social hype, meme ranks, and top trader PnL leaderboards. Sourced from github.com/binance/binance-skills-hub.
- binance-meme-rushBinance Web3 official skill — real-time meme token launchpad tracking and AI-powered trending topic discovery on Solana and BSC. Sourced from github.com/binance/binance-skills-hub.
- binance-spotBinance official spot trading skill — place orders, manage accounts, and access real-time market data via Binance Spot API. Sourced from github.com/binance/binance-skills-hub.
- binance-token-auditBinance Web3 official skill — security audit for token contracts, detecting honeypots, rug pulls, and malicious functions across BSC, Base, Solana, and Ethereum. Sourced from github.com/binance/binance-skills-hub.
- binance-token-infoBinance Web3 official skill — search tokens, retrieve metadata, real-time market data, and candlestick charts across BSC, Base, and Solana. Sourced from github.com/binance/binance-skills-hub.
- binance-trading-signalBinance Web3 official skill — Smart Money on-chain trading signals tracking professional investor buy/sell activity on BSC and Solana. Sourced from github.com/binance/binance-skills-hub.
- birdX/Twitter CLI for reading, searching, posting, and engagement via cookies.