GET /prices

Fetches the live order book depth and best bid/ask spread for a specific Unified Event ID.

Endpoint: GET /v1/prices/{event_id}

Response:

{
  "event_id": "event_us_election_2024",
  "best_execution": {
    "venue": "polymarket",
    "price": 0.52,
    "fee_adjusted_price": 0.521
  },
  "orderbook": {
    "bids": [0.52, 15000, "polymarket"],
      [0.51, 50000, "kalshi"],
    "asks": [0.53, 10000, "limitless"],
      [0.54, 25000, "polymarket"]
  }
}

Last updated