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.
Base URL
Section titled “Base URL”https://api.tiltdesk.xyzThe API is in private beta — not yet generally available. Public access with API tokens is coming; see Authentication.
Your first request
Section titled “Your first request”curl "https://api.tiltdesk.xyz/v1/markets/summary"# → { "total": 26833, "active": 6739, "expired": 20094, "by_category": [...] }Conventions
Section titled “Conventions”- 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.
Where to go next
Section titled “Where to go next”- API overview & playground — try the endpoints live.
- Concepts — the data model behind the API.