The REST API for the CLOB is scheduled for Q4 2026. WebSocket access is live today — see the WebSocket API.
Get order book (public)
Response
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
UPDATE: Robinhood Chain will be added next week 07/20/2026 [Buy on Pump.fun CA: ]
REST API surface for the CLOB (coming Q4 2026).
GET /v1/prediction/orderbook/{marketId}
| Parameter | Type | Description |
|---|---|---|
marketId | string | Market address |
outcome | string | YES or NO |
depth | integer | Number of levels (default: 10) |
{
"marketId": "0x...",
"outcome": "YES",
"bids": [["0.65", "1000"], ["0.64", "2000"]],
"asks": [["0.67", "500"], ["0.68", "1500"]]
}
POST /v1/prediction/order
{
"marketId": "0x...",
"outcome": "YES",
"side": "buy",
"orderType": "limit",
"price": "0.65",
"size": "1000"
}
DELETE /v1/prediction/order/{orderId}
GET /v1/prediction/positions
GET /v1/prediction/trades
| Parameter | Type | Description |
|---|---|---|
marketId | string | Filter by market |
outcome | string | Filter by outcome |
limit | integer | Number of trades (default: 50) |
