Skip to content

Getting started

TiltDesk is a multi-venue prediction-market intelligence engine (Polymarket first). It records order-book and on-chain data, cleans it into analytics tables, and serves it through a versioned product API.

https://api.tiltdesk.xyz

The API is in private beta — not yet generally available. Public access with API tokens is coming; see Authentication.

Terminal window
curl "https://api.tiltdesk.xyz/v1/markets/summary"
# → { "total": 26833, "active": 6739, "expired": 20094, "by_category": [...] }
  • Versioned — every path starts with /v1. Additive changes ship within v1; breaking ones get /v2.
  • JSON only — list endpoints return an envelope: { total, count, limit, offset, … }.
  • Read-only — the API never mutates data.
  • Tolerant clients — new fields ship within /v1, so ignore unknown fields.