Skip to main content
GET
/
whales
/
user
/
feed
Get feed
curl --request GET \
  --url https://api.oddpool.com/whales/user/feed

Parameters

limit
integer
default:"50"
Max results (1-500).
offset
integer
default:"0"
Pagination offset.
start_date
datetime
Filter by start date (ISO 8601).
end_date
datetime
Filter by end date (ISO 8601).
min_trade_size
float
Minimum trade size in USD.
platform
string
Filter by platform: kalshi or polymarket.
event_id
integer
Filter to specific event.

Example

curl -H "X-API-Key: your_api_key" \
  "https://api.oddpool.com/whales/user/feed?limit=10&platform=kalshi"

Response

{
  "trades": [
    {
      "id": 12345,
      "platform": "kalshi",
      "event_title": "1. FC Cologne vs Bayern Munich",
      "market_title": "Winner: Bayern Munich",
      "market_ticker": "KXBUNDESLIGAGAME-26JAN14KOEBMU-BMU",
      "outcome": "Bayern Munich",
      "timestamp": "2026-01-14T21:24:25Z",
      "taker_side": "yes",
      "trade_size_usd": 15000.00,
      "price": 0.78,
      "count": 1
    }
  ],
  "stats": {
    "total_volume_24h": 185195.0,
    "total_trades_24h": 151,
    "avg_trade_size": 1226.46
  },
  "pagination": {"limit": 10, "offset": 0, "total": 151}
}