v1

latestOpenAPI 3.0.32026-07-2613529376.3 KB
Public API V4

Orderbook

The endpoint retrieves the current order book as two arrays (bids / asks) with additional parameters.

<Note> The API caches the response for 100 ms </Note> <Warning> Rate limit 600 requests/10 sec. </Warning>
get/api/v4/public/orderbook/{market}

Path parameters

marketstring required
Example:BTC_USDT

Market pair name

Query parameters

limitinteger
Example:100

Orders depth quantity: 0 - 100. Not defined or 0 will return 100 entries.

levelinteger
Example:2

Aggregation level for price grouping. Level 0 applies no aggregation. Levels 1–5 provide increasing aggregation of the order book.

Response

Successful response

ticker_idstring

Market Name

timestampinteger

Current timestamp

Example response

{
  "ticker_id": "BTC_PERP",
  "timestamp": 1594391413,
  "asks": [
    [
      "9184.41",
      "0.773162"
    ]
  ],
  "bids": [
    [
      "9181.19",
      "0.010873"
    ]
  ]
}