Programmatic access to the top-50 Polymarket whale leaderboard and the live "tailable bets" feed. Two simple tiers — pay-as-you-grow. No credit-card-required free trial coming Q2.
Simple monthly subscriptions — cancel anytime.
For solo developers and side-project builders.
For teams building production dashboards.
All endpoints are read-only and live under /api/public/v1/.
/api/public/v1/leaderboardTop-50 Polymarket whales ranked by PnL or volume. Filter by period and category.
?period=?category=?limit=/api/public/v1/tailable-whalesLive feed of whale bets that are still actionable right now (fresh + market open + odds within 10pts of entry).
?window=curl https://polysharks.ai/api/public/v1/leaderboard \ -H "Authorization: Bearer YOUR_API_KEY" \ -G --data-urlencode "period=WEEK" --data-urlencode "category=CRYPTO" --data-urlencode "limit=10"
const res = await fetch(
'https://polysharks.ai/api/public/v1/tailable-whales?window=60',
{ headers: { Authorization: 'Bearer ' + process.env.POLYSHARKS_API_KEY } }
);
const data = await res.json();
console.log(data.rows); // [{ market_question, side, size_usd, polymarket_url, ... }]X-RateLimit-Limit-Day, X-RateLimit-Remaining-Day, and (on 429s) Retry-After so you can build robust client backoff.Generate a key, then send it as Authorization: Bearer … on every request. Plaintext is shown exactly once — copy it immediately.
Sign in to manage your API keys.
Log inPolySharks.ai is a market-intelligence and analytics platform operated by 8eight8 LLC. The site is provided for informational and educational purposes only — it is not financial, legal, tax, or gambling advice. Past whale performance and historical data carry no guarantee of future outcomes. Trading prediction markets involves substantial risk of loss, including 100% of principal. Users are solely responsible for compliance with the laws of their local jurisdiction — prediction-market access is restricted or prohibited in some US states and countries; verify legality before depositing or trading on Polymarket or Kalshi. PolySharks does not custody funds and is not affiliated with Polymarket Inc. or Kalshi Inc. 18+ only (21+ in some jurisdictions).