Search events
curl --request GET \
--url https://api.oddpool.com/search/eventsimport requests
url = "https://api.oddpool.com/search/events"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.oddpool.com/search/events', 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/search/events",
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/search/events"
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/search/events")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oddpool.com/search/events")
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_bodySearch
Search events
Find events by text query, by series, or both.
GET
/
search
/
events
Search events
curl --request GET \
--url https://api.oddpool.com/search/eventsimport requests
url = "https://api.oddpool.com/search/events"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.oddpool.com/search/events', 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/search/events",
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/search/events"
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/search/events")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oddpool.com/search/events")
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_bodyAn event groups all the outcome markets for one question. “Fed Rate Decision March 2026” is one event with markets for each rate-cut size; a single 15-minute Bitcoin event has up/down markets for that window.
You must pass either
q or series_id (or both). Requests with neither return 400. To find a series_id, use Search series.
Parameters
string
Full-text search on
title. Required when series_id is not provided.string
Filter to one series. Examples:
KXBTC15M, btc-up-or-down-15m, KXFEDDECISION. Required when q is not provided.string
kalshi or polymarket.string
default:"active"
active or closed.string
Exact category match.
integer
Minimum aggregate volume across child markets.
string
ISO timestamp filter on
discovered_at.string
default:"relevance"
relevance, newest, markets, volume, or liquidity. relevance requires q; without q the default is newest.integer
default:"20"
1-100.
integer
default:"0"
Pagination offset. The response is a bare JSON array — increment
offset by limit until you receive an empty array.Examples
List active events in a series
Useseries_id to scope results — typical for “show me what’s tradable in this series right now” workflows.
curl -H "X-API-Key: your_api_key" \
"https://api.oddpool.com/search/events?series_id=KXBTC15M&status=active&limit=10"
import requests
response = requests.get(
"https://api.oddpool.com/search/events",
headers={"X-API-Key": "your_api_key"},
params={"series_id": "KXBTC15M", "status": "active", "limit": 10},
)
events = response.json()
Free-text search
Useful when you don’t know theseries_id or want to span series.
curl -H "X-API-Key: your_api_key" \
"https://api.oddpool.com/search/events?q=election&sort_by=volume"
import requests
response = requests.get(
"https://api.oddpool.com/search/events",
headers={"X-API-Key": "your_api_key"},
params={"q": "election", "sort_by": "volume"},
)
events = response.json()
Response
[
{
"event_id": "KXBTC15M-26MAY040400",
"exchange": "kalshi",
"series_id": "KXBTC15M",
"title": "BTC Up or Down - 15 minutes",
"category": "Crypto",
"status": "active",
"image_url": "https://d1lvyva3zy5u58.cloudfront.net/series-images-webp/KXBTC15M.webp?size=sm",
"discovered_at": "2026-05-04T00:05:52Z",
"market_count": 1,
"total_volume": 0,
"total_liquidity": 0,
"market_questions": ["BTC price up in next 15 mins?"]
}
]
Errors
| Code | Reason |
|---|---|
400 | Neither q nor series_id provided. |