Market Data
Get orderbook
This endpoint returns the entire non-cumulative order book of currently listed Futures contracts.
GET
Get orderbook
Query Parameters
The symbol of the Futures.
Response
200 - application/json
- Success Response
- Errors
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
This endpoint returns the entire non-cumulative order book of currently listed Futures contracts.
curl --request GET \
--url https://futures.kraken.com/derivatives/api/v3/orderbookimport requests
url = "https://futures.kraken.com/derivatives/api/v3/orderbook"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/derivatives/api/v3/orderbook', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://futures.kraken.com/derivatives/api/v3/orderbook"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"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"
}The symbol of the Futures.
A structure containing lists with bid and ask prices and sizes.
Show child attributes
{
"bids": [[40178, 5], [40174, 4.2], [40170, 7.2]],
"asks": [[40186, 5.0183], [40190, 0.4183]]
}
success "success"
Server time in Coordinated Universal Time (UTC)
"2020-08-27T17:03:33.196Z"
curl --request GET \
--url https://futures.kraken.com/derivatives/api/v3/orderbookimport requests
url = "https://futures.kraken.com/derivatives/api/v3/orderbook"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://futures.kraken.com/derivatives/api/v3/orderbook', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://futures.kraken.com/derivatives/api/v3/orderbook"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"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"
}