Get feed
curl --request GET \
--url https://api.oddpool.com/whales/user/feedimport requests
url = "https://api.oddpool.com/whales/user/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.oddpool.com/whales/user/feed', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.oddpool.com/whales/user/feed",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.oddpool.com/whales/user/feed"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.oddpool.com/whales/user/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oddpool.com/whales/user/feed")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyWhale tracking
Get feed
Get whale trades for all your tracked events.
GET
/
whales
/
user
/
feed
Get feed
curl --request GET \
--url https://api.oddpool.com/whales/user/feedimport requests
url = "https://api.oddpool.com/whales/user/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.oddpool.com/whales/user/feed', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.oddpool.com/whales/user/feed",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.oddpool.com/whales/user/feed"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.oddpool.com/whales/user/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oddpool.com/whales/user/feed")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyParameters
integer
default:"50"
Max results (1-500).
integer
default:"0"
Pagination offset.
datetime
Filter by start date (ISO 8601).
datetime
Filter by end date (ISO 8601).
float
Minimum trade size in USD.
string
Filter by platform:
kalshi or polymarket.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"
import requests
response = requests.get(
"https://api.oddpool.com/whales/user/feed",
headers={"X-API-Key": "your_api_key"},
params={"limit": 10, "platform": "kalshi"}
)
data = response.json()
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}
}
⌘I