Skip to main content
GET
/
orderbook
Get orderbook
curl --request GET \
  --url https://futures.kraken.com/derivatives/api/v3/orderbook
{
  "orderBook": {
    "bids": [
      [
        40178,
        5
      ],
      [
        40174,
        4.2
      ],
      [
        40170,
        7.2
      ]
    ],
    "asks": [
      [
        40186,
        5.0183
      ],
      [
        40190,
        0.4183
      ]
    ]
  },
  "result": "success",
  "serverTime": "2020-08-27T17:03:33.196Z"
}

Documentation Index

Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

symbol
string
required

The symbol of the Futures.

Response

200 - application/json
orderBook
object
required

A structure containing lists with bid and ask prices and sizes.

Example:
{
"bids": [[40178, 5], [40174, 4.2], [40170, 7.2]],
"asks": [[40186, 5.0183], [40190, 0.4183]]
}
result
enum<string>
required
Available options:
success
Example:

"success"

serverTime
string<date-time>
required

Server time in Coordinated Universal Time (UTC)

Example:

"2020-08-27T17:03:33.196Z"