Trading Volume
Summed buy and sell volume from tracked smart money, KOL and whale wallets over a time window on Solana, BNB Chain, Base and Ethereum — in native currency and USD, for volume charts and analytics.
Returns the total trading volume of tracked smart money, KOL and whale wallets within a time window for one chain and wallet type on Solana, BNB Chain, Base or Ethereum — summed in native currency (volume) and in historical USD (volume_usd). Ideal for smart-money volume charts, trading dashboards and analytics. Add &mint= to measure a single token.
Time window — set seconds, minutes and/or hours; they add up. The window is capped at 24 hours. If you request more, the volume is summed over the capped window and a note is added to the warnings array. The applied window is echoed back as time_window_seconds.
Data source — summed straight from the per-chain, per-type live trade index (sorted by timestamp). volume_usd sums the historical USD value of each trade; trades without a stored USD value fall back to the current native price.
Parameters / settings
blockchain(required) — one of:solana,bnb,base,ethtype(required) —kol,smart, orwhale(availability per chain: solana → kol/smart/whale; bnb → kol/smart; base → kol/smart; eth → kol)seconds/minutes/hours(optional) — time window, capped at 24 hoursmint(optional) — measure only one token mint / contract addressapi_key(optional if the Bearer header is used)
Authorization: Bearer YOUR_KEY
bnbPossible values: kolPossible values: 24000x23a49ea152d14fe4bc41b71345b7da6687de4444YOUR_KEYReturns the summed trading volume for the requested time window.
Missing or invalid parameter (e.g. type or blockchain).
Missing API key.
Invalid or exhausted API key.
Rate limit exceeded.
GET /v1/transactions/volume?blockchain=solana&type=kol HTTP/1.1
Host: api.cabalspy.xyz
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"data": {
"blockchain": "bnb",
"type": "kol",
"mode": "volume",
"volume": 1731.45787,
"volume_usd": 1181203.24,
"currency": "BNB",
"time_window_seconds": 86400
},
"meta": {
"request_id": "req_a26a1dc49399",
"cached": false,
"cache_age_seconds": 0,
"version": "1.0.0",
"timestamp": "2026-06-02T19:12:43Z"
}
}Last updated