Heurist Logo
Back to Skill Marketplace
binance

binance-web3-trading-signal

VerifiedCryptoaccess level:low

Subscribe and retrieve on-chain Smart Money signals. Monitor trading activities of smart money addresses, including buy/sell signals, trigger price, current price, max gain, and exit rate. Use this skill when users are looking for investment opportunities — smart money signals can serve as valuable references for potential trades.

Install

npx @heurist-network/skills add binance-web3-trading-signal

Installs

6

Stars

464

Timeline

Updated Mar 8, 2026

Created Mar 4, 2026

Source

Verification

Reviewed and verified

SHA256: 14cf92adb05f00c8...

Approved Mar 4, 2026 by admin

Access Level

low

External APIs

Binance

Files (1)

SKILL.md

Summary

metadata
author: binance-web3-teamversion: 1.0

SKILL.md

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

Request Headers:

Content-Type: application/json
Accept-Encoding: identity

Request Body:

{
    "smartSignalType": "",
    "page": 1,
    "pageSize": 100,
    "chainId": "CT_501"
}

Request Parameters:

FieldTypeRequiredDescription
smartSignalTypestringNoSignal type filter, empty string for all
pagenumberYesPage number, starting from 1
pageSizenumberYesItems per page, max 100
chainIdstringYesChain ID: 56 for bsc, CT_501 for solana

Example Request:

curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money' \
--header 'Content-Type: application/json' \
--header 'Accept-Encoding: identity' \
--data '{"smartSignalType":"","page":1,"pageSize":100,"chainId":"CT_501"}'

Response Example:

{
    "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

FieldTypeDescription
signalIdnumberUnique signal ID
tickerstringToken symbol/name
chainIdstringChain ID
contractAddressstringToken contract address
logoUrlstringToken icon URL path
chainLogoUrlstringChain icon URL
tokenDecimalsnumberToken decimals

Tag Information

FieldTypeDescription
isAlphabooleanWhether it's an Alpha token
launchPlatformstringLaunch platform (e.g., Pumpfun)
isExclusiveLaunchpadbooleanWhether it's exclusive launchpad
alphaPointnumberAlpha points (can be null)
tokenTagobjectToken tag categories

Signal Data

FieldTypeDescription
smartSignalTypestringSignal type, e.g., SMART_MONEY
smartMoneyCountnumberNumber of smart money addresses involved
directionstringTrade direction: buy / sell
timeFramenumberTime frame (milliseconds)
signalTriggerTimenumberSignal trigger timestamp (ms)
signalCountnumberTotal signal count

Price Data

FieldTypeDescription
totalTokenValuestringTotal trade value (USD)
alertPricestringPrice at signal trigger
alertMarketCapstringMarket cap at signal trigger
currentPricestringCurrent price
currentMarketCapstringCurrent market cap
highestPricestringHighest price after signal
highestPriceTimenumberHighest price timestamp (ms)

Performance Data

FieldTypeDescription
exitRatenumberExit rate (%)
statusstringSignal status: active/timeout/completed
maxGainstringMaximum gain (%)

Token Tag Types

Social Events

TagDescription
DEX PaidDEX paid promotion

Launch Platform

TagDescription
PumpfunPump.fun platform
MoonshotMoonshot platform

Sensitive Events

TagDescription
Smart Money Add HoldingsSmart money accumulating
Smart Money Reduce HoldingsSmart money reducing
Whale BuyWhale buying
Whale SellWhale selling

Supported Chains

Chain NamechainId
BSC56
SolanaCT_501

Signal Status

StatusDescription
activeActive, signal still valid
timeoutTimed out, exceeded observation period
completedCompleted, reached target or stop loss

Use Cases

  1. Track Smart Money: Monitor professional investor trading behavior
  2. Discover Opportunities: Get early signals when smart money buys
  3. Risk Alert: Receive alerts when smart money starts selling
  4. Performance Analysis: Analyze historical signal performance and max gains
  5. Strategy Validation: Evaluate signal quality via exitRate and maxGain

Example Requests

Get Smart Money Signals on Solana

curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money' \
--header 'Content-Type: application/json' \
--header 'Accept-Encoding: identity' \
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"CT_501"}'

Get Signals on BSC

curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money' \
--header 'Content-Type: application/json' \
--header 'Accept-Encoding: identity' \
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"56"}'

Notes

  1. Token icon URL requires full domain prefix: https://bin.bnbstatic.com + logoUrl path
  2. Chain icon URL (chainLogoUrl) is already a full URL
  3. All timestamps are in milliseconds
  4. maxGain is a percentage string
  5. Signals may timeout (status=timeout), focus on active signals
  6. Higher smartMoneyCount may indicate higher signal reliability
  7. exitRate shows smart money exit status, high exitRate may indicate expired signal