Track every whale move across BTC, ETH, Arbitrum, Polygon — cross-correlated with 500K+ news sources, macro data, and SEC filings. The only platform that tells you WHY whales moved.
Net exchange inflows and outflows across major platforms
Top assets and global market metrics
| # | Symbol | Price | 24h | Market Cap |
|---|---|---|---|---|
| Loading prices… | ||||
Look up any wallet address
Everything you see here is available via API. Real-time whale tracking, cross-asset intelligence, 27.8M labeled addresses.
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://crypto.langfin.ai/v1/crypto/whales?limit=10
import requests
resp = requests.get(
"https://crypto.langfin.ai/v1/crypto/whales",
headers={"Authorization": "Bearer YOUR_API_KEY"},
params={"limit": 10}
)
whales = resp.json()
for w in whales:
print(f"{w['chain']} | ${w['value_usd']:,.0f} | {w['direction']}")
const res = await fetch(
"https://crypto.langfin.ai/v1/crypto/whales?limit=10",
{ headers: { "Authorization": "Bearer YOUR_API_KEY" } }
);
const whales = await res.json();
whales.forEach(w =>
console.log(`${w.chain} | $${w.value_usd.toLocaleString()} | ${w.direction}`)
);
$35/month · Unlimited API calls · All chains · MCP compatible
Get API Access →