GET /api/v1/events
Aggregates normalized markets into event summaries keyed by canonical event_id.
Use this endpoint when you want event-level browsing first, then optional market
expansion and published matched_events context.
Error Semantics
503 means the market snapshot has not finished loading yet.
Parameters
Comma-separated exchange IDs to include. Omit to query all exchanges in the current snapshot.
Keyword search in event titles.
Event status filter such as active, closed, or resolved.
Minimum total volume across all markets in the event.
Include constituent markets directly in the response.
Results per page. Range: 1-100.
Cursor from a previous response.
Response
Event summaries sorted by total volume descending. Canonical Parsec event ID.
Number of markets in the event.
Sum of volume across all markets in the event.
Exchanges represented in the event.
Earliest close time across constituent markets.
Constituent markets, only included when include_markets=true.
Published same_event counterparts for this event.
Cursor metadata for the result set.
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.parsecapi.com/api/v1/events?search=super+bowl&include_markets=true&limit=5"
{
"events" : [
{
"event_id" : "kalshi:KXSB-26" ,
"title" : "Super Bowl LX" ,
"market_count" : 12 ,
"total_volume" : 4500000 ,
"exchanges" : [ "kalshi" , "polymarket" ],
"status" : "active" ,
"close_time" : "2026-02-09T00:00:00Z" ,
"matched_events" : [
{
"event_id" : "ev:super-bowl-lx-winner" ,
"title" : "Super Bowl LX Winner" ,
"exchanges" : [ "polymarket" ],
"confidence" : 0.96 ,
"confidence_tier" : "HIGH" ,
"source" : "tier1_exact"
}
],
"markets" : [
{
"parsec_id" : "kalshi:KXSB-26-CHI" ,
"exchange" : "kalshi" ,
"exchange_market_id" : "KXSB-26-CHI" ,
"question" : "Will Chicago win Super Bowl LX?" ,
"status" : "active"
}
]
}
],
"pagination" : {
"count" : 1 ,
"total" : 1 ,
"has_more" : false
}
}