curl --request GET \
--url https://api.hypedexer.com/market/book/{coin} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hypedexer.com/market/book/{coin}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.hypedexer.com/market/book/{coin}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hypedexer.com/market/book/{coin}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hypedexer.com/market/book/{coin}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hypedexer.com/market/book/{coin}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/market/book/{coin}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Book for ETH at 2026-09-23 18:40:00 (minute)",
"data": {
"coin": "ETH",
"source": "minute",
"time": "2026-09-23T18:40:00",
"mid_px": 2660.95,
"spread_bps": 0.3758056333261018,
"levels_bid": 6870,
"levels_ask": 3953,
"book_span_bid_bps": 7.33,
"book_span_ask_bps": 7.33,
"book_notional_bid_usd": 9432583.95,
"book_notional_ask_usd": 9994522.37,
"secs_since_snapshot": 667,
"pruned": 0,
"data_source": "node",
"bids": [
{
"px": 2660.9,
"sz": 86.0191
},
{
"px": 2660.8,
"sz": 43.9009
},
{
"px": 2660.7,
"sz": 81.0383
}
],
"asks": [
{
"px": 2661,
"sz": 57.502
},
{
"px": 2661.1,
"sz": 26.6904
},
{
"px": 2661.2,
"sz": 54.2979
}
]
},
"total_count": null,
"execution_time_ms": 89.42,
"next_cursor": null,
"has_more": null
}Order book at a point in time
The order book as of the end of a given minute (source=minute, up to 20 levels per side) or the nearest full snapshot at or before that time (source=snapshot, up to 50 levels per side, about every 10 minutes on archive data and every 12 minutes on node data). data_source tells which dataset answered (archive or node). Coverage: April 2024 to February 2026 from our market data archive (data_source: archive, top ~20 levels per side), and continuously since 23 September 2026 from the full order book replayed from our own Hyperliquid node (data_source: node, every resting order). No book data between 10 February and 23 September 2026. Returns 404 when no book exists for the coin in the 24 hours before at.
curl --request GET \
--url https://api.hypedexer.com/market/book/{coin} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hypedexer.com/market/book/{coin}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.hypedexer.com/market/book/{coin}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hypedexer.com/market/book/{coin}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hypedexer.com/market/book/{coin}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hypedexer.com/market/book/{coin}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/market/book/{coin}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Book for ETH at 2026-09-23 18:40:00 (minute)",
"data": {
"coin": "ETH",
"source": "minute",
"time": "2026-09-23T18:40:00",
"mid_px": 2660.95,
"spread_bps": 0.3758056333261018,
"levels_bid": 6870,
"levels_ask": 3953,
"book_span_bid_bps": 7.33,
"book_span_ask_bps": 7.33,
"book_notional_bid_usd": 9432583.95,
"book_notional_ask_usd": 9994522.37,
"secs_since_snapshot": 667,
"pruned": 0,
"data_source": "node",
"bids": [
{
"px": 2660.9,
"sz": 86.0191
},
{
"px": 2660.8,
"sz": 43.9009
},
{
"px": 2660.7,
"sz": 81.0383
}
],
"asks": [
{
"px": 2661,
"sz": 57.502
},
{
"px": 2661.1,
"sz": 26.6904
},
{
"px": 2661.2,
"sz": 54.2979
}
]
},
"total_count": null,
"execution_time_ms": 89.42,
"next_cursor": null,
"has_more": null
}Authorizations
Your Hypedexer API key. Create one in the console at https://app.hypedexer.com. Authorization: Bearer <key> and the api_key query parameter are accepted as well.
Path Parameters
Coin symbol (e.g. BTC, @107 for a spot pair, xyz:TSLA for HIP-3)
Query Parameters
Timestamp (ISO UTC); the book as of the end of that minute is returned
Levels per side (max 20 from minute states, 50 from full snapshots)
1 <= x <= 50minute = end-of-minute reconstructed state (default); snapshot = nearest full snapshot at or before at (~every 10 min)
minute, snapshot Response
OK
The response is of type object.