What is a Pear event?
A Pear event is a unified record that groups related prediction markets from different venues under a single identifier. For example, “Will Bitcoin reach $100K in 2025?” might exist as separate events on both Kalshi and Polymarket. Pear merges these into one event with a singlepear_xxx ID.
Event identifiers
Each event has two identifiers:| Field | Description | Example |
|---|---|---|
id | Unique Pear identifier. Always starts with pear_. | pear_a1b2c3d4 |
slug | URL-friendly identifier. Use this in the /api/events/{slug} endpoint. | bitcoin-100k-2025 |
Source types
Thesource_type field tells you how the event was sourced across platforms:
| Source type | Description | Count |
|---|---|---|
matched | The event exists on both Kalshi and Polymarket. The venue_event_ids object will have both kalshi and polymarket keys. | ~4,400 |
kalshi_only | The event only exists on Kalshi. | ~3,500 |
polymarket_only | The event only exists on Polymarket. | ~3,600 |
Venue event IDs
Thevenue_event_ids field maps venue names to their native event identifiers. This lets you cross-reference Pear events with the original platforms.
Categories
Events are organized into categories that reflect the topic area. The available categories and their event counts can be fetched via the/api/events/categories endpoint.
Common categories include:
- Sports — Super Bowl, NBA, MLB, soccer, and other sporting events
- Elections — Presidential, congressional, gubernatorial races
- Politics — Policy decisions, appointments, geopolitical events
- Economics — Fed rate decisions, inflation, GDP, employment
- Crypto — Bitcoin price targets, ETF approvals, protocol milestones
- Entertainment — Awards shows, box office, streaming metrics
- Science — Space exploration, climate milestones, research breakthroughs
- Technology — Product launches, company milestones, AI developments
- Weather — Temperature records, hurricane forecasts, seasonal patterns
Events and markets
Each event can have one or more venue markets — the actual tradeable contracts listed on Kalshi or Polymarket. For example, a “Super Bowl LIX” event might have separate markets for the winner, the MVP, the total score, and various prop bets. Fetch an event with all its markets:Listing and filtering events
The/api/events endpoint supports filtering and cursor-based pagination: