trading-signal by binance/binance-skills-hub
npx skills add https://github.com/binance/binance-skills-hub --skill trading-signal此技能用于获取链上聪明钱交易信号,帮助用户追踪专业投资者的动向:
方法 : POST
URL :
https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money
请求头 :
Content-Type: application/json
Accept-Encoding: identity
User-Agent: binance-web3/1.0 (Skill)
请求体 :
{
"smartSignalType": "",
"page": 1,
"pageSize": 100,
"chainId": "CT_501"
}
请求参数 :
| 字段 |
|---|
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 类型 |
|---|
| 必填 |
|---|
| 描述 |
|---|
| chainId | string | 是 | 链 ID:56 对应 bsc,CT_501 对应 solana |
| page | number | 否 | 页码,从 1 开始 |
| pageSize | number | 否 | 每页数量,最大 100 |
请求示例 :
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' \
--header 'User-Agent: binance-web3/1.0 (Skill)' \
--data '{"page":1,"pageSize":100,"chainId":"CT_501"}'
响应示例 :
{
"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
}
响应字段 :
| 字段 | 类型 | 描述 |
|---|---|---|
| signalId | number | 唯一信号 ID |
| ticker | string | 代币符号/名称 |
| chainId | string | 链 ID |
| contractAddress | string | 代币合约地址 |
| logoUrl | string | 代币图标 URL 路径 |
| chainLogoUrl | string | 链图标 URL |
| tokenDecimals | number | 代币精度 |
| 字段 | 类型 | 描述 |
|---|---|---|
| isAlpha | boolean | 是否为 Alpha 代币 |
| launchPlatform | string | 发行平台(例如,Pumpfun) |
| isExclusiveLaunchpad | boolean | 是否为独家启动板 |
| alphaPoint | number | Alpha 点数(可能为 null) |
| tokenTag | object | 代币标签分类 |
| 字段 | 类型 | 描述 |
|---|---|---|
| smartSignalType | string | 信号类型,例如 SMART_MONEY |
| smartMoneyCount | number | 涉及的聪明钱地址数量 |
| direction | string | 交易方向:buy / sell |
| timeFrame | number | 时间范围(毫秒) |
| signalTriggerTime | number | 信号触发时间戳(毫秒) |
| signalCount | number | 总信号数量 |
| 字段 | 类型 | 描述 |
|---|---|---|
| totalTokenValue | string | 总交易价值(美元) |
| alertPrice | string | 信号触发时的价格 |
| alertMarketCap | string | 信号触发时的市值 |
| currentPrice | string | 当前价格 |
| currentMarketCap | string | 当前市值 |
| highestPrice | string | 信号后的最高价格 |
| highestPriceTime | number | 最高价格时间戳(毫秒) |
| 字段 | 类型 | 描述 |
|---|---|---|
| exitRate | number | 退出率(%) |
| status | string | 信号状态:active/timeout/completed |
| maxGain | string | 最大收益(%) |
| 标签 | 描述 |
|---|---|
| DEX Paid | DEX 付费推广 |
| 标签 | 描述 |
|---|---|
| Pumpfun | Pump.fun 平台 |
| Moonshot | Moonshot 平台 |
| 标签 | 描述 |
|---|---|
| Smart Money Add Holdings | 聪明钱增持 |
| Smart Money Reduce Holdings | 聪明钱减持 |
| Whale Buy | 巨鲸买入 |
| Whale Sell | 巨鲸卖出 |
| 链名称 | chainId |
|---|---|
| BSC | 56 |
| Solana | CT_501 |
| 状态 | 描述 |
|---|---|
| active | 活跃,信号仍有效 |
| timeout | 超时,已超过观察期 |
| completed | 完成,已达到目标或止损 |
包含 User-Agent 头,其值为:binance-web3/1.0 (Skill)
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' \
--header 'User-Agent: binance-web3/1.0 (Skill)' \
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"CT_501"}'
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' \
--header 'User-Agent: binance-web3/1.0 (Skill)' \
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"56"}'
https://bin.bnbstatic.com + logoUrl 路径每周安装量
635
代码仓库
GitHub 星标数
386
首次出现
9 天前
安全审计
安装于
codex617
opencode616
gemini-cli614
github-copilot614
amp613
cursor613
This skill retrieves on-chain Smart Money trading signals to help users track professional investors:
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
User-Agent: binance-web3/1.0 (Skill)
Request Body :
{
"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 :
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' \
--header 'User-Agent: binance-web3/1.0 (Skill)' \
--data '{"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 :
| Field | Type | Description |
|---|---|---|
| signalId | number | Unique signal ID |
| ticker | string | Token symbol/name |
| chainId | string | Chain ID |
| contractAddress | string | Token contract address |
| logoUrl | string | Token icon URL path |
| chainLogoUrl | string | Chain icon URL |
| tokenDecimals | number | Token decimals |
| Field | Type | Description |
|---|---|---|
| isAlpha | boolean | Whether it's an Alpha token |
| launchPlatform | string | Launch platform (e.g., Pumpfun) |
| isExclusiveLaunchpad | boolean | Whether it's exclusive launchpad |
| alphaPoint | number | Alpha points (can be null) |
| tokenTag | object | Token tag categories |
| Field | Type | Description |
|---|---|---|
| smartSignalType | string | Signal type, e.g., SMART_MONEY |
| smartMoneyCount | number | Number of smart money addresses involved |
| direction | string | Trade direction: buy / sell |
| timeFrame | number | Time frame (milliseconds) |
| signalTriggerTime | number | Signal trigger timestamp (ms) |
| signalCount | number | Total signal count |
| Field | Type | Description |
|---|---|---|
| totalTokenValue | string | Total trade value (USD) |
| alertPrice | string | Price at signal trigger |
| alertMarketCap | string | Market cap at signal trigger |
| currentPrice | string | Current price |
| currentMarketCap | string | Current market cap |
| highestPrice | string | Highest price after signal |
| highestPriceTime | number | Highest price timestamp (ms) |
| Field | Type | Description |
|---|---|---|
| exitRate | number | Exit rate (%) |
| status | string | Signal status: active/timeout/completed |
| maxGain | string | Maximum gain (%) |
| Tag | Description |
|---|---|
| DEX Paid | DEX paid promotion |
| Tag | Description |
|---|---|
| Pumpfun | Pump.fun platform |
| Moonshot | Moonshot platform |
| Tag | Description |
|---|---|
| Smart Money Add Holdings | Smart money accumulating |
| Smart Money Reduce Holdings | Smart money reducing |
| Whale Buy | Whale buying |
| Whale Sell | Whale selling |
| Chain Name | chainId |
|---|---|
| BSC | 56 |
| Solana | CT_501 |
| Status | Description |
|---|---|
| active | Active, signal still valid |
| timeout | Timed out, exceeded observation period |
| completed | Completed, reached target or stop loss |
Include User-Agent header with the following string: binance-web3/1.0 (Skill)
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' \
--header 'User-Agent: binance-web3/1.0 (Skill)' \
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"CT_501"}'
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' \
--header 'User-Agent: binance-web3/1.0 (Skill)' \
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"56"}'
https://bin.bnbstatic.com + logoUrl pathWeekly Installs
635
Repository
GitHub Stars
386
First Seen
9 days ago
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
codex617
opencode616
gemini-cli614
github-copilot614
amp613
cursor613
24,400 周安装