/query-token-audit
Query token security audit to detect scams, honeypots, and malicious contracts before trading. Returns comprehensive security analysis including contract risks, trading risks, and scam detection. Use when users ask "is this token safe?", "check token security", "audit token", or
$ npx -y skills add binance/binance-skills-hub --skill query-token-audit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/query-token-audit
Context preview
The summary Claude sees to decide when to auto-load this skill.
Query token security audit to detect scams, honeypots, and malicious contracts before trading. Returns comprehensive security analysis including contract risks, trading risks, and scam detection. Use when users ask "is this token safe?", "check token security", "audit token", or
SKILL.md
query-token-audit.SKILL.mdname: query-token-audit
description: |
Query token security audit to detect scams, honeypots, and malicious contracts before trading.
Returns comprehensive security analysis including contract risks, trading risks, and scam detection.
Use when users ask "is this token safe?", "check token security", "audit token", or before any swap.
metadata:
author: binance-web3-team
version: "1.4"
Query Token Audit Skill
Overview
| API | Function | Use Case | |-----|---------------------|----------| | Token Security Audit | Token security scan | Detect honeypot, rug pull, scam, malicious functions |
Use Cases
1. **Pre-Trade Safety Check**: Verify token security before buying or swapping 2. **Scam Detection**: Identify honeypots, fake tokens, and malicious contracts 3. **Contract Analysis**: Check for dangerous ownership functions and hidden risks 4. **Tax Verification**: Detect unusual buy/sell taxes before trading
Supported Chains
| Chain Name | chainId | |------------|---------| | BSC | 56 | | Base | 8453 | | Solana | CT_501 | | Ethereum | 1 |
---
API: Token Security Audit
Method: POST
**URL**:
https://web3.binance.com/bapi/defi/v1/public/wallet-direct/security/token/audit
**Request Parameters**:
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | binanceChainId | string | Yes | Chain ID: `CT_501` (Solana), `56` (BSC), `8453` (Base), `1` (Ethereum) | | contractAddress | string | Yes | Token contract address | | requestId | string | Yes | Unique request ID (UUID v4 format) |
**Request Headers**:
Content-Type: application/json
Accept-Encoding: identity
User-Agent: binance-web3/1.4 (Skill)
**Example Request**:
curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/security/token/audit' \
--header 'Content-Type: application/json' \
--header 'source: agent' \
--header 'Accept-Encoding: identity' \
--header 'User-Agent: binance-web3/1.4 (Skill)' \
--data '{
"binanceChainId": "56",
"contractAddress": "0x55d398326f99059ff775485246999027b3197955",
"requestId": "'$(uuidgen)'"
}'**Response Example**:
{
"code": "000000",
"data": {
"requestId": "d6727c70-de6c-4fad-b1d7-c05422d5f26b",
"hasResult": true,
"isSupported": true,
"riskLevelEnum": "LOW",
"riskLevel": 1,
"extraInfo": {
"buyTax": "0",
"sellTax": "0",
"isVerified": true
},
"riskItems": [
{
"id": "CONTRACT_RISK",
"name": "Contract Risk",
"details": [
{
"title": "Honeypot Risk Not Found",
"description": "A honeypot is a token that can be bought but not sold",
"isHit": false,
"riskType": "RISK"
}
]
}
]
},
"success": true
}**Response Fields**:
| Field | Type | Description | |-----------------------------------|------|-----------------------------------------------------------| | hasResult | boolean | Whether audit data is available | | isSupported | boolean | Whether the token is supported for audit | | riskLevelEnum | string | Risk level: `LOW`, `MEDIUM`, `HIGH` | | riskLevel | number | Risk level number (1-5) | | extraInfo.buyTax | string | Buy tax percentage (null if unknown) | | extraInfo.sellTax | string | Sell tax percentage (null if unknown) | | extraInfo.isVerified | boolean | Whether contract code is verified | | riskItems[].id | string | Risk category: `CONTRACT_RISK`, `TRADE_RISK`, `SCAM_RISK` | | riskItems[].details[].title | string | Risk check title | | riskItems[].details[].description | string | Risk check description | | riskItems[].details[].isHit | boolean | true = risk detected | | riskItems[].details[].riskType | string | `RISK` (critical) or `CAUTION` (warning) |
**Risk Level Reference**:
| riskLevel | riskLevelEnum | Action | Description | |-----------|---------------|--------|-------------| | 0-1 | LOW | Proceed with caution | Lower risk detected, but NOT guaranteed safe. DYOR. | | 2-3 | MEDIUM | Exercise caution | Moderate risks detected, review risk items carefully | | 4 | HIGH | Avoid trading | Critical risks detected, high probability of loss | | 5 | HIGH | Block transaction | Severe risks confirmed, do NOT proceed |
**IMPORTANT**: LOW risk does NOT mean "safe." Audit results are point-in-time snapshots. Project teams can modify contracts or restrict liquidity after purchase. These risks cannot be predicted in advance.
**Response Handling**:
- If `hasResult=false` OR `isSupported=false`:
→ Reply: "Security audit data is not available for this token on this chain." → Do NOT show `riskLevel`, `riskLevelEnum`, or `riskItems` (data is unreliable when either field is false) → You may suggest the user verify the contract address and chain, or try again later
- If `hasResult=true` AND `isSupported=true`:
→ Show the full audit result including risk level, tax info, and all risk items → Apply the Risk Level Reference table above for actionable guidance
---
User Agent Header
Include `User-Agent` header with the following string: `binance-web3/1.4 (Skill)`
Notes
1. All numeric fields are string format, convert when using 2. Audit results are ONLY valid when `hasResult:
Read more
name: query-token-audit description: | Query token security audit to detect scams, honeypots, and malicious contracts before trading. Returns comprehensive security analysis including contract risks, trading risks, and scam detection. Use when users ask "is this token safe?", "check token security", "audit token", or before any swap. metadata: author: binance-web3-team version: "1.4"
Query Token Audit Skill
Overview
| API | Function | Use Case | |-----|---------------------|----------| | Token Security Audit | Token security scan | Detect honeypot, rug pull, scam, malicious functions |
Use Cases
1. **Pre-Trade Safety Check**: Verify token security before buying or swapping 2. **Scam Detection**: Identify honeypots, fake tokens, and malicious contracts 3. **Contract Analysis**: Check for dangerous ownership functions and hidden risks 4. **Tax Verification**: Detect unusual buy/sell taxes before trading
Supported Chains
| Chain Name | chainId | |------------|---------| | BSC | 56 | | Base | 8453 | | Solana | CT_501 | | Ethereum | 1 |
---
API: Token Security Audit
Method: POST
**URL**:
https://web3.binance.com/bapi/defi/v1/public/wallet-direct/security/token/audit
**Request Parameters**:
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | binanceChainId | string | Yes | Chain ID: `CT_501` (Solana), `56` (BSC), `8453` (Base), `1` (Ethereum) | | contractAddress | string | Yes | Token contract address | | requestId | string | Yes | Unique request ID (UUID v4 format) |
**Request Headers**:
Content-Type: application/json Accept-Encoding: identity User-Agent: binance-web3/1.4 (Skill)
**Example Request**:
curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/security/token/audit' \
--header 'Content-Type: application/json' \
--header 'source: agent' \
--header 'Accept-Encoding: identity' \
--header 'User-Agent: binance-web3/1.4 (Skill)' \
--data '{
"binanceChainId": "56",
"contractAddress": "0x55d398326f99059ff775485246999027b3197955",
"requestId": "'$(uuidgen)'"
}'**Response Example**:
{
"code": "000000",
"data": {
"requestId": "d6727c70-de6c-4fad-b1d7-c05422d5f26b",
"hasResult": true,
"isSupported": true,
"riskLevelEnum": "LOW",
"riskLevel": 1,
"extraInfo": {
"buyTax": "0",
"sellTax": "0",
"isVerified": true
},
"riskItems": [
{
"id": "CONTRACT_RISK",
"name": "Contract Risk",
"details": [
{
"title": "Honeypot Risk Not Found",
"description": "A honeypot is a token that can be bought but not sold",
"isHit": false,
"riskType": "RISK"
}
]
}
]
},
"success": true
}**Response Fields**:
| Field | Type | Description | |-----------------------------------|------|-----------------------------------------------------------| | hasResult | boolean | Whether audit data is available | | isSupported | boolean | Whether the token is supported for audit | | riskLevelEnum | string | Risk level: `LOW`, `MEDIUM`, `HIGH` | | riskLevel | number | Risk level number (1-5) | | extraInfo.buyTax | string | Buy tax percentage (null if unknown) | | extraInfo.sellTax | string | Sell tax percentage (null if unknown) | | extraInfo.isVerified | boolean | Whether contract code is verified | | riskItems[].id | string | Risk category: `CONTRACT_RISK`, `TRADE_RISK`, `SCAM_RISK` | | riskItems[].details[].title | string | Risk check title | | riskItems[].details[].description | string | Risk check description | | riskItems[].details[].isHit | boolean | true = risk detected | | riskItems[].details[].riskType | string | `RISK` (critical) or `CAUTION` (warning) |
**Risk Level Reference**:
| riskLevel | riskLevelEnum | Action | Description | |-----------|---------------|--------|-------------| | 0-1 | LOW | Proceed with caution | Lower risk detected, but NOT guaranteed safe. DYOR. | | 2-3 | MEDIUM | Exercise caution | Moderate risks detected, review risk items carefully | | 4 | HIGH | Avoid trading | Critical risks detected, high probability of loss | | 5 | HIGH | Block transaction | Severe risks confirmed, do NOT proceed |
**IMPORTANT**: LOW risk does NOT mean "safe." Audit results are point-in-time snapshots. Project teams can modify contracts or restrict liquidity after purchase. These risks cannot be predicted in advance.
**Response Handling**:
- If `hasResult=false` OR `isSupported=false`:
→ Reply: "Security audit data is not available for this token on this chain." → Do NOT show `riskLevel`, `riskLevelEnum`, or `riskItems` (data is unreliable when either field is false) → You may suggest the user verify the contract address and chain, or try again later
- If `hasResult=true` AND `isSupported=true`:
→ Show the full audit result including risk level, tax info, and all risk items → Apply the Risk Level Reference table above for actionable guidance
---
User Agent Header
Include `User-Agent` header with the following string: `binance-web3/1.4 (Skill)`
Notes
1. All numeric fields are string format, convert when using 2. Audit results are ONLY valid when `hasResult:
Binance Skills Hub is an open skills marketplace that gives AI agents native access to crypto: both centralized and decentralized. Search tokens, execute trades, track wallets, monitor signals, and interact with DeFi protocols, all through natural language.
Repo: binance/binance-skills-hub
Other skills on binance-skills-hub.
- /binance-agentic-wallet
Use when the user mentions wallet connect/sign in/sign out, check balance, send/transfer tokens, swap/buy/sell tokens, DEX trade, limit/market order, cancel order, get a quote, transaction history, wallet settings, daily limit, slippage, MEV protection, supported chains,
Open skill - /binance-leaderboard
On-chain wallet leaderboard and Gem Hunter analysis on Binance Web3. Query top trader rankings by PnL, win rate, volume, trade count, or token count across BSC/Solana/Base/ETH. Analyze individual wallet addresses with a 6-dimension scoring model (winrate/stability/drawdown/
Open skill - /binance-sports-ai-analyzer
Use when users ask for World Cup or 世界杯 AI match predictions, WC assistant probabilities, World Cup news insights, master analysis, recomputing football match win rates with custom correction signals, or trading a related prediction market after reviewing the AI analysis.
Open skill - /binance-tokenized-securities-info
Query Ondo tokenized US stock data on Binance Web3. Covers: supported stock token list, RWA metadata (company info, attestation reports), market and per-asset trading status (with corporate action codes for earnings, dividends, splits), real-time on-chain data (token price,
Open skill - /binance-trading-signal
On-chain trading signals and custom signal strategy management on Binance Web3. Three signal sources: smart money (wallet buy/sell events), platform strategies, and user-created strategies (meme / fomo). Four scenario domains: (A) Reports — daily report, monthly backtest review
Open skill - /binance-wallet-tracker
Wallet tracking and monitoring on Binance Web3. Monitor token/trade activity for private groups or public Smart Money/KOL data. Four domains: (A) Discovery — consensus, pioneer, leaderboard diff, token buyer lookup, time-window summaries, similar wallets; (B) Evaluation — token
Open skill

