Event detail
curl --request GET \
--url https://api.polynode.dev/v1/event/{slug} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.polynode.dev/v1/event/{slug}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.polynode.dev/v1/event/{slug}', 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.polynode.dev/v1/event/{slug}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.polynode.dev/v1/event/{slug}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.polynode.dev/v1/event/{slug}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v1/event/{slug}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "51456",
"slug": "how-many-fed-rate-cuts-in-2026",
"title": "How many Fed rate cuts in 2026?",
"description": "This market will resolve according to the exact amount of cuts...",
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/how-many-fed-rate-cuts-in-2025-9qstZkSL1dn0.jpg",
"icon": "https://polymarket-upload.s3.us-east-2.amazonaws.com/how-many-fed-rate-cuts-in-2025-9qstZkSL1dn0.jpg",
"active": true,
"closed": false,
"volume": 12679447.65,
"volume24hr": 531530.07,
"liquidity": 1120355.33,
"openInterest": 711723.41,
"startDate": "2025-09-29T22:29:04.30848Z",
"endDate": "2026-12-31T00:00:00Z",
"markets": [
{
"question": "Will no Fed rate cuts happen in 2026?",
"conditionId": "0xd4e77ba6f29fc093509d24f508631abd445ecf506bbdc9c4c80e60256a318527",
"outcomes": ["Yes", "No"],
"outcomePrices": ["0.3455", "0.6545"],
"volume": 2368774.98,
"liquidity": 54958.02,
"active": true,
"closed": false,
"groupItemTitle": "0 (0 bps)",
"tokenId": "12403602920039269077597917340921667997547115084613238528792639013246536343316"
},
{
"question": "Will 1 Fed rate cut happen in 2026?",
"conditionId": "0x5e082f0b57f47a29044aa35b4c5658393122e659d5feae521c06b57cdd7f905c",
"outcomes": ["Yes", "No"],
"outcomePrices": ["0.195", "0.805"],
"volume": 780389.52,
"liquidity": 65401.81,
"active": true,
"closed": false,
"groupItemTitle": "1 (25 bps)",
"tokenId": "113379839734351069617987084078322474966003108854908079701423911002443710490196"
},
{
"question": "Will 2 Fed rate cuts happen in 2026?",
"conditionId": "0xe0d9f508a249e0070db06eb7d1e1fb17eb23c963f6fb722c4c3f81e23240c1cd",
"outcomes": ["Yes", "No"],
"outcomePrices": ["0.165", "0.835"],
"volume": 754043.87,
"liquidity": 75307.43,
"active": true,
"closed": false,
"groupItemTitle": "2 (50 bps)",
"tokenId": "72535544017897924722695722172278828562733090748474862987195303914909938482758"
}
],
"series": null,
"similarMarkets": 0,
"annotations": 0
}
Event Detail
Full event data with all markets, prices, token IDs, and metadata.
GET
/
v1
/
event
/
{slug}
Event detail
curl --request GET \
--url https://api.polynode.dev/v1/event/{slug} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.polynode.dev/v1/event/{slug}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.polynode.dev/v1/event/{slug}', 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.polynode.dev/v1/event/{slug}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.polynode.dev/v1/event/{slug}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.polynode.dev/v1/event/{slug}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v1/event/{slug}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "51456",
"slug": "how-many-fed-rate-cuts-in-2026",
"title": "How many Fed rate cuts in 2026?",
"description": "This market will resolve according to the exact amount of cuts...",
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/how-many-fed-rate-cuts-in-2025-9qstZkSL1dn0.jpg",
"icon": "https://polymarket-upload.s3.us-east-2.amazonaws.com/how-many-fed-rate-cuts-in-2025-9qstZkSL1dn0.jpg",
"active": true,
"closed": false,
"volume": 12679447.65,
"volume24hr": 531530.07,
"liquidity": 1120355.33,
"openInterest": 711723.41,
"startDate": "2025-09-29T22:29:04.30848Z",
"endDate": "2026-12-31T00:00:00Z",
"markets": [
{
"question": "Will no Fed rate cuts happen in 2026?",
"conditionId": "0xd4e77ba6f29fc093509d24f508631abd445ecf506bbdc9c4c80e60256a318527",
"outcomes": ["Yes", "No"],
"outcomePrices": ["0.3455", "0.6545"],
"volume": 2368774.98,
"liquidity": 54958.02,
"active": true,
"closed": false,
"groupItemTitle": "0 (0 bps)",
"tokenId": "12403602920039269077597917340921667997547115084613238528792639013246536343316"
},
{
"question": "Will 1 Fed rate cut happen in 2026?",
"conditionId": "0x5e082f0b57f47a29044aa35b4c5658393122e659d5feae521c06b57cdd7f905c",
"outcomes": ["Yes", "No"],
"outcomePrices": ["0.195", "0.805"],
"volume": 780389.52,
"liquidity": 65401.81,
"active": true,
"closed": false,
"groupItemTitle": "1 (25 bps)",
"tokenId": "113379839734351069617987084078322474966003108854908079701423911002443710490196"
},
{
"question": "Will 2 Fed rate cuts happen in 2026?",
"conditionId": "0xe0d9f508a249e0070db06eb7d1e1fb17eb23c963f6fb722c4c3f81e23240c1cd",
"outcomes": ["Yes", "No"],
"outcomePrices": ["0.165", "0.835"],
"volume": 754043.87,
"liquidity": 75307.43,
"active": true,
"closed": false,
"groupItemTitle": "2 (50 bps)",
"tokenId": "72535544017897924722695722172278828562733090748474862987195303914909938482758"
}
],
"series": null,
"similarMarkets": 0,
"annotations": 0
}
Returns comprehensive data for a single Polymarket event, including all sub-markets with current outcome prices, volumes, liquidity, and token IDs for price history lookups.
string
required
Event slug (e.g.,
how-many-fed-rate-cuts-in-2026). Found in event URLs on Polymarket.{
"id": "51456",
"slug": "how-many-fed-rate-cuts-in-2026",
"title": "How many Fed rate cuts in 2026?",
"description": "This market will resolve according to the exact amount of cuts...",
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/how-many-fed-rate-cuts-in-2025-9qstZkSL1dn0.jpg",
"icon": "https://polymarket-upload.s3.us-east-2.amazonaws.com/how-many-fed-rate-cuts-in-2025-9qstZkSL1dn0.jpg",
"active": true,
"closed": false,
"volume": 12679447.65,
"volume24hr": 531530.07,
"liquidity": 1120355.33,
"openInterest": 711723.41,
"startDate": "2025-09-29T22:29:04.30848Z",
"endDate": "2026-12-31T00:00:00Z",
"markets": [
{
"question": "Will no Fed rate cuts happen in 2026?",
"conditionId": "0xd4e77ba6f29fc093509d24f508631abd445ecf506bbdc9c4c80e60256a318527",
"outcomes": ["Yes", "No"],
"outcomePrices": ["0.3455", "0.6545"],
"volume": 2368774.98,
"liquidity": 54958.02,
"active": true,
"closed": false,
"groupItemTitle": "0 (0 bps)",
"tokenId": "12403602920039269077597917340921667997547115084613238528792639013246536343316"
},
{
"question": "Will 1 Fed rate cut happen in 2026?",
"conditionId": "0x5e082f0b57f47a29044aa35b4c5658393122e659d5feae521c06b57cdd7f905c",
"outcomes": ["Yes", "No"],
"outcomePrices": ["0.195", "0.805"],
"volume": 780389.52,
"liquidity": 65401.81,
"active": true,
"closed": false,
"groupItemTitle": "1 (25 bps)",
"tokenId": "113379839734351069617987084078322474966003108854908079701423911002443710490196"
},
{
"question": "Will 2 Fed rate cuts happen in 2026?",
"conditionId": "0xe0d9f508a249e0070db06eb7d1e1fb17eb23c963f6fb722c4c3f81e23240c1cd",
"outcomes": ["Yes", "No"],
"outcomePrices": ["0.165", "0.835"],
"volume": 754043.87,
"liquidity": 75307.43,
"active": true,
"closed": false,
"groupItemTitle": "2 (50 bps)",
"tokenId": "72535544017897924722695722172278828562733090748474862987195303914909938482758"
}
],
"series": null,
"similarMarkets": 0,
"annotations": 0
}
⌘I

