Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Query market data, outcomes, and order books
query MarketDetails($marketId: ID!) { market(id: $marketId) { id description type strike volume outcomes { id probability orders { price qty } } } }
{ "marketId": "123e4567-e89b-12d3-a456-426614174001" }
{ "data": { "market": { "id": "123e4567-e89b-12d3-a456-426614174001", "description": "KC v BUF Total", "type": "TOTAL", "strike": 26.5, "volume": 1000000, "outcomes": [ { "id": "outcome-1", "probability": 0.5, "orders": [ { "price": 0.667, "qty": 110 } ] } ] } } }
id
description
type
strike
volume
outcomes
probability
orders
price
qty