curl --request GET \
--url https://api.hypedexer.com/market/depth/{coin} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hypedexer.com/market/depth/{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/depth/{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/depth/{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/depth/{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/depth/{coin}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/market/depth/{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": "1 1m buckets for BTC",
"data": [
{
"time": "2026-09-23T18:30:00",
"mid_px": 84157.5,
"spread_bps": 0.11882482250542138,
"levels_bid": 14433,
"levels_ask": 6584,
"secs_since_snapshot": 67,
"pruned": 0,
"depth_bid_10bps": 25594473.73,
"depth_ask_10bps": 37204933.06,
"depth_bid_50bps": 82187081.94,
"depth_ask_50bps": 92395583.81,
"depth_bid_100bps": 131214345.19,
"depth_ask_100bps": 145986206.74,
"book_notional_bid_usd": 1373355.41,
"book_notional_ask_usd": 11993691.22,
"book_span_bid_bps": 3.15,
"book_span_ask_bps": 2.32,
"book_imbalance": -0.7945
}
],
"total_count": 1,
"execution_time_ms": 109.25,
"next_cursor": null,
"has_more": null
}Order book depth history
Order book depth per bucket, from the order book reconstructed minute by minute. 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.
depth_{bid,ask}_{10,50,100}bps: USD resting within that distance of mid. Always exact on node data (full book). On archive data a band is returned only when the recorded ~20 levels reach beyond it (nullotherwise; archive levels typically reach 2 to 15 bps from mid on majors). On1h/1dbuckets the value averages the complete minutes and is returned only when they are at least half of the bucket;band_*bps_complete_pctgives the share.book_notional_bid_usd/book_notional_ask_usd,book_span_*_bps,book_imbalance: USD resting in the top 20 levels stored for the minute, how far from mid they reach, and (bid - ask) / (bid + ask) over them. Always present.levels_bid/levels_ask: number of price levels in the book (thousands on node data).- Quality:
secs_since_snapshot(age of the last full snapshot the book was re-anchored on: about 600 s at most on archive data, about 720 s at most on node data) andpruned(archive only).
Intervals: 1m (max 7 days), 1h (max 180 days), 1d (max 730 days).
curl --request GET \
--url https://api.hypedexer.com/market/depth/{coin} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hypedexer.com/market/depth/{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/depth/{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/depth/{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/depth/{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/depth/{coin}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/market/depth/{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": "1 1m buckets for BTC",
"data": [
{
"time": "2026-09-23T18:30:00",
"mid_px": 84157.5,
"spread_bps": 0.11882482250542138,
"levels_bid": 14433,
"levels_ask": 6584,
"secs_since_snapshot": 67,
"pruned": 0,
"depth_bid_10bps": 25594473.73,
"depth_ask_10bps": 37204933.06,
"depth_bid_50bps": 82187081.94,
"depth_ask_50bps": 92395583.81,
"depth_bid_100bps": 131214345.19,
"depth_ask_100bps": 145986206.74,
"book_notional_bid_usd": 1373355.41,
"book_notional_ask_usd": 11993691.22,
"book_span_bid_bps": 3.15,
"book_span_ask_bps": 2.32,
"book_imbalance": -0.7945
}
],
"total_count": 1,
"execution_time_ms": 109.25,
"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
Start time (ISO UTC)
End time (ISO UTC); default = start + max window
Bucket: 1m (max 7 days), 1h (max 180 days), 1d (max 730 days)
1m, 1h, 1d Response
OK
The response is of type object.