Lateas

Developers

Coming soon

One clean API for prediction-market data.

Historical, live, and canonical cross-venue inventory, normalized across venues. One schema, one key. No per-venue glue, no reverse-engineering websockets. Simpler than the incumbents by design.

We will email you when access opens. No spam.

Request
curl https://api.lateas-data.com/v1/inventory \
  -H "Authorization: Bearer $LATEAS_KEY" \
  -d category=Crypto
200 OK
{
  "canonical_event_id": "evt_btc_100k_aug31",
  "title": "Bitcoin above $100,000 on Aug 31?",
  "category": "Crypto",
  "end_date": "2026-08-31T00:00:00Z",
  "cross_venue_spread": 0.031,
  "legs": [
    { "venue": "polymarket", "market_id": "0xab…", "last": 0.62 },
    { "venue": "kalshi",     "market_id": "BTC-31AUG", "last": 0.59 },
    { "venue": "limitless",  "market_id": "btc-…", "last": 0.63 }
  ]
}

Inventory

GET /v1/inventory

Canonical cross-venue events. One real-world question, linked across every venue that lists it. The Bloomberg-style catalog.

FieldTypeDescription
canonical_event_idstringStable cross-venue event id
titlestringCanonical event title
categoryenumCrypto · Financials · Sports · Politics
end_datetimestampResolution / settlement time (UTC)
legsVenueLeg[]Per-venue listings linked to this event
cross_venue_spreadfloatMax−min price across venues (0..1)

Historical

GET /v1/historical

Books, trades, BBOs and volumes captured tick-by-tick. Query by venue, market and time range; stream or bulk-download.

FieldTypeDescription
ts_recvint64 (ns)Collector receive time, UTC nanoseconds
venueenumpolymarket · kalshi · limitless
market_idstringVenue-native market id
typeenumbook · trade · bbo
priceint64 ×1e8Fixed-point probability (scaled)
sizeint64Contracts

Live

GET /v1/live (SSE)

Real-time books, trades and BBOs over a single streaming connection. Subscribe by venue or market.

FieldTypeDescription
eventenumbook · trade · bbo · heartbeat
venueenumpolymarket · kalshi · limitless
market_idstringVenue-native market id
bid / askfloatBest bid / ask (0..1)
tsint64 (ms)Server timestamp

Illustrative mockup. Endpoints, schemas and payloads shown here aren't live yet. Keys, usage-based billing and rate limits ship with the API.