Kuroko’s order book proxy gives you CORS-safe access to Polymarket’s Central Limit Order Book (CLOB). Use it to fetch live bid/ask depth and historical price data for any market token — the same data powering the order terminal.Documentation Index
Fetch the complete documentation index at: https://0x-250ca30e.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Endpoints
GET /api/clob/order-book
Returns the live order book for a market token, including the top bids and asks.The Polymarket token ID for the YES or NO outcome of a market. Find token IDs on the markets endpoint.
Descending list of buy orders. Each entry has
price (probability as decimal, e.g. "0.43" = 43%) and size (shares available).Ascending list of sell orders. Each entry has
price and size.GET /api/clob/prices-history
Returns the historical price series for a market token.The Polymarket token ID.
Time interval for the history. One of
1d, 1w, 1m, 3m. Defaults to 1d.Rate limits and errors
| Status | Meaning |
|---|---|
200 | Success |
429 | Rate limit exceeded — 60 requests/minute per IP. Retry after 60 seconds. |
413 | Request body too large (POST requests only, max 20,000 characters) |
502 | CLOB upstream unavailable |
The order book proxy forwards requests to Polymarket’s CLOB API. The response format matches Polymarket’s native CLOB API.