Axes Docs

Get Order Book

Get a token order book snapshot

GET
/book

Query Parameters

token_id*string

Token identifier.

Response Body

application/json

application/json

curl -X GET "https://clob.axes.co/book?token_id=string"
{
  "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,
  "last_trade_price": "string"
}
{
  "error": "string"
}