Skip to main content
GET
/
book
Get a token order book snapshot
curl --request GET \
  --url https://clob.kuest.com/book
{
  "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
}
Fetch the latest order book snapshot for a single token_id. The timestamp value is a Unix millisecond timestamp; convert it to human-readable time as needed on the client. Only the first few depth levels are shown above; the full payload can contain additional bids and asks.

Query Parameters

token_id
string
required

Token identifier.

Response

Order book summary

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