
Trading Signal
Pull Binance Web3 smart-money on-chain signals when you are exploring crypto trade ideas and want structured buy/sell context—not financial advice.
Overview
Trading Signal is an agent skill for the Idea phase that retrieves Binance Web3 smart-money on-chain buy and sell signals with price and performance context.
Install
npx skills add https://github.com/binance/binance-skills-hub --skill trading-signalWhat is this skill?
- POST smart-money signals API with chainId for BSC (56) or Solana (CT_501)
- Surfaces buy/sell signals with trigger price, current price, max gain, and exit rate fields
- Pagination up to pageSize 100 per request for scanning a signal feed
- Includes token tags such as Pumpfun and DEX Paid for quick context
- Documented curl-ready headers and JSON body for agent-driven requests
- pageSize maximum 100 items per request
- Skill metadata version 1.1
Adoption & trust: 6.6k installs on skills.sh; 881 GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You want to monitor professional on-chain wallets for potential trades but do not have the API contract and parameters wired into your agent workflow.
Who is it for?
Indie builders experimenting with crypto analytics agents, signal dashboards, or validation research on BSC and Solana feeds.
Skip if: Non-crypto products, regulated advisory workflows without human review, or builders who cannot call external Binance Web3 APIs.
When should I use this skill?
Users are looking for investment opportunities and want smart money buy/sell signal references from Binance Web3.
What do I get? / Deliverables
You get a paginated JSON signal list you can filter, visualize, or feed into your own alerts—still requiring your trading and compliance judgment.
- Paginated smart-money signal JSON response
- Agent-parseable fields for prices, gains, exit rate, and tags
Recommended Skills
Journey fit
Signal discovery is research before you build bots, dashboards, or commit capital—canonical shelf is idea-phase research. The skill’s stated use is finding investment opportunities via smart money activity, which is exploratory research rather than production operations.
How it compares
On-chain signal integration skill—not a backtesting framework, exchange execution skill, or traditional equities research pack.
Common Questions / FAQ
Who is trading-signal for?
Solo developers and agent users exploring Web3 markets who want structured smart-money signal pulls for research or tooling prototypes.
When should I use trading-signal?
During early idea-phase research when evaluating tokens or smart-money narratives before you build automation or allocate capital.
Is trading-signal safe to install?
Review the Security Audits panel on this Prism page; the skill performs live HTTPS calls to Binance endpoints and handles market-sensitive data.
SKILL.md
READMESKILL.md - Trading Signal
# Trading Signal Skill ## Overview This skill retrieves on-chain Smart Money trading signals to help users track professional investors: - Get smart money buy/sell signals - Compare signal trigger price with current price - Analyze max gain and exit rate of signals - Get token tags (e.g., Pumpfun, DEX Paid) ## API Endpoint ### Get Smart Money Signals **Method**: POST **URL**: ``` https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money/ai ``` **Request Headers**: ``` Content-Type: application/json Accept-Encoding: identity User-Agent: binance-web3/1.1 (Skill) ``` **Request Body**: ```json { "smartSignalType": "", "page": 1, "pageSize": 100, "chainId": "CT_501" } ``` **Request Parameters**: | Field | Type | Required | Description | |-------|------|----------|-------------| | chainId | string | Yes | Chain ID: `56` for bsc, `CT_501` for solana | | page | number | No | Page number, starting from 1 | | pageSize | number | No | Items per page, max 100 | **Example Request**: ```bash curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money/ai' \ --header 'Content-Type: application/json' \ --header 'Accept-Encoding: identity' \ --header 'User-Agent: binance-web3/1.1 (Skill)' \ --data '{"page":1,"pageSize":100,"chainId":"CT_501"}' ``` **Response Example**: ```json { "code": "000000", "message": null, "messageDetail": null, "data": [ { "signalId": 22179, "ticker": "symbol of the token", "chainId": "CT_501", "contractAddress": "NV...pump", "logoUrl": "/images/web3-data/public/token/logos/825C62EC6BE6.png", "chainLogoUrl": "https://bin.bnbstatic.com/image/admin_mgs_image_upload/20250303/42065e0a-3808-400e-b589-61c2dbfc0eac.png", "tokenDecimals": 6, "isAlpha": false, "launchPlatform": "Pumpfun", "mark": null, "isExclusiveLaunchpad": false, "alphaPoint": null, "tokenTag": { "Social Events": [ {"tagName": "DEX Paid", "languageKey": "wmp-label-update-dexscreener-social"} ], "Launch Platform": [ {"tagName": "Pumpfun", "languageKey": "wmp-label-title-pumpfun"} ], "Sensitive Events": [ {"tagName": "Smart Money Add Holdings", "languageKey": "wmp-label-title-smart-money-add-position"} ] }, "smartSignalType": "SMART_MONEY", "smartMoneyCount": 5, "direction": "buy", "timeFrame": 883000, "signalTriggerTime": 1771903462000, "totalTokenValue": "3436.694044670495772073", "alertPrice": "0.024505932131088482", "alertMarketCap": "24505118.720436560690909782", "currentPrice": "0.025196", "currentMarketCap": "25135683.751234890220129783671668745", "highestPrice": "0.027244000000000000", "highestPriceTime": 1771927760000, "exitRate": 78, "status": "timeout", "maxGain": "5.4034", "signalCount": 23 } ], "success": true } ``` **Response Fields**: ### Basic Information | Field | Type | Description | |-------|------|-------------| | signalId | number | Unique signal ID | | ticker | string | Token symbol/name | | chainId | string | Chain ID | | contractAddress | string |