Back to Skill Marketplace

Opportunity Capture

crypto-market-rank

Crypto Market Rank is an API-driven skill that provides multi-dimensional token and trader leaderboards for discovery, research, and alerting. Key features include Social Hype Leaderboard (sentiment-filtered social buzz and translations), Unified Token Rank (trending, top searched, alpha picks, and

Updated today<1 min setup

Overview

Crypto Market Rank is an API-driven skill that provides multi-dimensional token and trader leaderboards for discovery, research, and alerting.

Crypto Market Rank is an API-driven skill that provides multi-dimensional token and trader leaderboards for discovery, research, and alerting. Key features include Social Hype Leaderboard (sentiment-filtered social buzz and translations), Unified Token Rank (trending, top searched, alpha picks, and stock-token rankings with rankType filters), Smart Money Inflow Rank (tokens with largest smart-money buys), Meme Rank (Pulse launchpad breakout candidates), and Address PnL Rank (top trader PnL, win rates, KOL performance). The API supports chainId, sentiment, targetLanguage, timeRange and other filters for precise queries and returns JSON-ready results for dashboards, trading bots, research pipelines, and portfolio screening. Core advantages are multi-chain coverage (BSC, Base, Solana), real-time ranking signals, customizable filters, and easy integration for traders, analysts, and product teams seeking actionable market insights.

Skill.md

How this skill works

Crypto Market Rank is an API-driven skill that provides multi-dimensional token and trader leaderboards for discovery, research, and alerting. Key features include Social Hype Leaderboard (sentiment-filtered social buzz and translations), Unified Token Rank (trending, top searched, alpha picks, and

SKILL.mdALPHIO / VERIFIED

Crypto Market Rank Skill

Overview

APIFunctionUse Case
Social Hype LeaderboardSocial buzz rankingSentiment analysis, social summaries
Unified Token RankMulti-type token rankingsTrending, Top Search, Alpha, Stock with filters
Smart Money Inflow RankToken rank by smart money buysDiscover tokens smart money is buying most
Meme RankTop meme tokens from Pulse launchpadFind meme tokens most likely to break out
Address Pnl RankTop trader PnL leaderboardTop PnL traders / KOL performance ranking

Use Cases

  1. Social Hype Analysis: Discover tokens with highest social buzz and sentiment
  2. Trending Tokens: View currently trending tokens (rankType=10)
  3. Top Searched: See most searched tokens (rankType=11)
  4. Alpha Discovery: Browse Binance Alpha picks (rankType=20)
  5. Stock Tokens: View tokenized stocks (rankType=40)
  6. Smart Money Inflow: Discover which tokens smart money is buying most
  7. Meme Rank: Find top meme tokens from Pulse launchpad most likely to break out
  8. PnL Leaderboard: View top-performing trader addresses, PnL, win rates
  9. Filtered Research: Combine filters for targeted token or address screening

Supported Chains

ChainchainId
BSC56
Base8453
SolanaCT_501

API 1: Social Hype Leaderboard

Method: GET

URL:

https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/market/token/pulse/social/hype/rank/leaderboard

Request Parameters:

ParameterTypeRequiredDescription
chainIdstringYesChain ID
sentimentstringNoFilter: All, Positive, Negative, Neutral
targetLanguagestringYesTranslation target, e.g., en, zh
timeRangenumberYesTime range, 1 = 24 hours
socialLanguagestringNoContent language, ALL for all

Headers: Accept-Encoding: identity

Example:

curl 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/market/token/pulse/social/hype/rank/leaderboard?chainId=56&sentiment=All&socialLanguage=ALL&targetLanguage=en&timeRange=1' \
-H 'Accept-Encoding: identity'

Response (data.leaderBoardList[]):

Field PathTypeDescription
metaInfo.logostringIcon URL path (prefix https://bin.bnbstatic.com)
metaInfo.symbolstringToken symbol
metaInfo.chainIdstringChain ID
metaInfo.contractAddressstringContract address
metaInfo.tokenAgenumberCreation timestamp (ms)
marketInfo.marketCapnumberMarket cap (USD)
marketInfo.priceChangenumberPrice change (%)
socialHypeInfo.socialHypenumberTotal social hype index
socialHypeInfo.sentimentstringPositive / Negative / Neutral
socialHypeInfo.socialSummaryBriefstringBrief social summary
socialHypeInfo.socialSummaryDetailstringDetailed social summary
socialHypeInfo.socialSummaryBriefTranslatedstringTranslated brief summary
socialHypeInfo.socialSummaryDetailTranslatedstringTranslated detailed summary

API 2: Unified Token Rank

Method: POST (recommended) / GET

URL:

https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/market/token/pulse/unified/rank/list

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

Rank Types

rankTypeNameDescription
10TrendingHot trending tokens
11Top SearchMost searched tokens
20AlphaAlpha tokens (Binance Alpha picks)
40StockTokenized stock tokens

Request Body (all fields optional)

Core Parameters:

FieldTypeDefaultDescription
rankTypeinteger10Rank type: 10=Trending, 11=TopSearch, 20=Alpha, 40=Stock
chainIdstring-Chain ID: 1, 56, 8453, CT_501
periodinteger50Time period: 10=1m, 20=5m, 30=1h, 40=4h, 50=24h
sortByinteger0Sort field (see Sort Options)
orderAscbooleanfalseAscending order if true
pageinteger1Page number (min 1)
sizeinteger200Page size (max 200)

Filter Parameters (Min/Max pairs):

FilterTypeDescription
percentChangeMin/MaxdecimalPrice change range (%)
marketCapMin/MaxdecimalMarket cap range (USD)
volumeMin/MaxdecimalVolume range (USD)
liquidityMin/MaxdecimalLiquidity range (USD)
holdersMin/MaxlongHolder count range
holdersTop10PercentMin/MaxdecimalTop10 holder % range
kycHoldersMin/MaxlongKYC holder count (Alpha only)
countMin/MaxlongTransaction count range
uniqueTraderMin/MaxlongUnique trader count range
launchTimeMin/MaxlongToken launch time range (timestamp ms)

Advanced Filters:

FieldTypeDescription
keywordsstring[]Include symbols matching these keywords
excludesstring[]Exclude these symbols
socialsinteger[]Social filter: 0=at_least_one, 1=X, 2=Telegram, 3=Website
alphaTagFilterstring[]Alpha narrative tags
auditFilterinteger[]Audit: 0=not_renounced, 1=freezable, 2=mintable
tagFilterinteger[]Tag filter: 0=hide_alpha, 23=dex_paid, 29=alpha_points, etc.

Sort Options

sortByField
0Default
1Web default
2Search count
10Launch time
20Liquidity
30Holders
40Market cap
50Price change
60Transaction count
70Volume
80KYC holders
90Price
100Unique traders

Example Request

curl -X POST 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/market/token/pulse/unified/rank/list' \
-H 'Content-Type: application/json' \
-H 'Accept-Encoding: identity' \
-d '{"rankType":10,"chainId":"1","period":50,"sortBy":70,"orderAsc":false,"page":1,"size":20}'

Response

{
  "code": "000000",
  "data": {
    "tokens": [{ "..." }],
    "total": 100,
    "page": 1,
    "size": 20
  },
  "success": true
}

Token Fields (data.tokens[]):

FieldTypeDescription
chainIdstringChain ID
contractAddressstringContract address
symbolstringToken symbol
iconstringLogo URL path (prefix https://bin.bnbstatic.com)
pricestringCurrent price (USD)
marketCapstringMarket cap
liquiditystringLiquidity
holdersstringHolder count
launchTimestringLaunch timestamp (ms)
decimalsintegerToken decimals
linksstringSocial links JSON
percentChange{1m,5m,1h,4h,24h}stringPrice change by period (%)
volume{1m,5m,1h,4h,24h}stringVolume by period (USD)
volume{1m,5m,1h,4h,24h}Buy/SellstringBuy/Sell volume by period
count{1m,5m,1h,4h,24h}stringTransaction count by period
count{1m,5m,1h,4h,24h}Buy/SellstringBuy/Sell tx count by period
uniqueTrader{1m,5m,1h,4h,24h}stringUnique traders by period
alphaInfoobjectAlpha info (tagList, description)
auditInfoobjectAudit info (riskLevel, riskNum, cautionNum)
tokenTagobjectToken tag info
kycHoldersstringKYC holder count
holdersTop10PercentstringTop10 holder percentage

API 3: Smart Money Inflow Rank

Method: POST

URL:

https://web3.binance.com/bapi/defi/v1/public/wallet-direct/tracker/wallet/token/inflow/rank/query

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

Request Body:

Best used for

When to use it

Crypto Market Rank is an API-driven skill that provides multi-dimensional token and trader leaderboards for discovery, research, and alerting. Key features include Social Hype Leaderboard (sentiment-filtered social buzz and translations), Unified Token Rank (trending, top searched, alpha picks, and

01 · PRE-MEETING

Prepare a decision brief

Turn scattered evidence into a structured case before an investment committee meeting.

02 · TEAM WORKFLOW

Standardize handoffs

Create consistent research outputs across analysts, portfolio managers, and agents.

03 · LIVE UPDATE

Refresh the thesis

Update scenarios after a new catalyst, KPI release, or earnings result.

Community notes

Built to improve with use.

Feedback will appear here as this skill is used and reviewed.

Leave feedback

Discover more

Related skills

View all
Get Started