Skip to main content

Whale Long/Short Ratio

Whale / smart-money long/short positioning, derived from Binance's Smart Money signal feed (large holders and whale counts).

EndpointSourceNotes
GET /smart-money/signal/overviewBinance Smart MoneyPer-symbol overview: long/short head-count, whale count, net position, average price. symbol required.
GET /smart-money/signal/listBinance Smart MoneyRanked list of large-holder net position / long-short flow.
GET /whale-boardplatform snapshot (Redis)Bulk: all active symbols with whale long/short + score, sorted by score.

Parameters

NameInTypeRequiredDefaultNotes
symbolquerystringfor /overviewe.g. BTCUSDT.
timeRangequerystringfor /list24hOne of 30m, 1h, 24h, 7d.
min_quote_volumequerynumberNo50000000/whale-board filter, in USDT.

Response — 200 OK

/smart-money/signal/overview returns long/short head-count, whale count, net position and average price for the symbol. /whale-board returns a snapshot:

{
"generatedAt": 1745920800000,
"rows": [
{ "symbol": "BTCUSDT", "quoteVolume": "...", "whaleLongShort": "...", "score": 0.0 }
]
}

Errors

HTTPCause
400timeRange not in the allowed set (/list).
502Upstream Binance request failed.

Examples

# Per-symbol whale long/short overview
curl -s "https://api.pipai.org/smart-money/signal/overview?symbol=BTCUSDT"

# Bulk whale board
curl -s "https://api.pipai.org/whale-board?min_quote_volume=50000000"