Skip to main content
POST
/
books
Fetch multiple order books
curl --request POST \
  --url https://clob.kuest.com/books \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "token_id": "<string>",
    "side": "BUY"
  }
]
'
[
  {
    "market": "<string>",
    "asset_id": "<string>",
    "timestamp": "<string>",
    "hash": "<string>",
    "bids": [
      {
        "price": "<string>",
        "size": "<string>"
      }
    ],
    "asks": [
      {
        "price": "<string>",
        "size": "<string>"
      }
    ],
    "min_order_size": "<string>",
    "tick_size": "<string>",
    "neg_risk": true
  }
]
Submit a batch of token_ids to retrieve their latest order book snapshots in a single call. The timestamp is a Unix millisecond timestamp indicating when the snapshot was taken. Only the first few bid and ask levels are shown in this excerpt; the live response can include many more.

Body

application/json
token_id
string
required
side
enum<string> | null

When provided, returns only one side of the book.

Available options:
BUY,
SELL

Response

Order book summaries

market
string
required
asset_id
string
required
timestamp
string
required

Snapshot timestamp in milliseconds.

hash
string
required
bids
object[]
required
asks
object[]
required
min_order_size
string
required
tick_size
string
required
neg_risk
boolean
required