curl --request GET \
--url https://api.hypedexer.com/fills/recent \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hypedexer.com/fills/recent"
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/fills/recent', 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/fills/recent",
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/fills/recent"
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/fills/recent")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/fills/recent")
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": "Fetched 2 recent fills (compact)",
"data": [
{
"user": "0x654086857e1fad6dcf05cf6695cce51ea3984268",
"coin": "ETH",
"coinMeaning": "ETH",
"px": 2630.9,
"sz": 0.419,
"side": "B",
"time": "2026-09-19T07:10:19.398999",
"startPosition": -7.0988,
"dir": "Close Short",
"closedPnl": -0.9637,
"hash": "0x0f8965b4bc18ff8d11030444ba78d301e2007d9a571c1e5fb35211077b1cd977",
"oid": 549645125989,
"tid": 382659237386851,
"fee": 0.011023,
"feeToken": "USDC",
"typeTrade": "perp",
"isLiquidation": 0,
"liquidationRole": "none",
"liqMarkPx": null,
"liqMethod": null,
"liquidatedUser": null,
"notional": 1102.3471,
"priorityGas": null
},
{
"user": "0x46c9a4d12683041a1e279367e124ccc09f96a453",
"coin": "DOGE",
"coinMeaning": "DOGE",
"px": 0.087304,
"sz": 1718,
"side": "B",
"time": "2026-09-19T07:10:19.332000",
"startPosition": 18932,
"dir": "Open Long",
"closedPnl": 0,
"hash": "0x66a957b34d6493f468230444ba78d20203840098e867b2c60a7203060c686ddf",
"oid": 549645143541,
"tid": 996404197999085,
"fee": 0.059995,
"feeToken": "USDC",
"typeTrade": "perp",
"isLiquidation": 0,
"liquidationRole": "none",
"liqMarkPx": null,
"liqMethod": null,
"liquidatedUser": null,
"notional": 149.98827200000002,
"priorityGas": null
}
],
"total_count": null,
"execution_time_ms": 1622.44,
"next_cursor": "1789801819332:996404197999085",
"has_more": true
}Recent fills
Recent fills (live table, 24h TTL): same filters as /fills, faster responses for the recent time window. Each fill includes priorityGas (priority fee paid, null if none) and block_number (Hyperliquid block number, null for older fills).
Order type (opt-in): set include_order_type=true to add orderType (string or null) to each fill: the originating order’s type (Limit, Market, Stop Market, Take Profit Limit, …: open set), resolved server-side from the order status by (user, oid). See GET /fills/ for full semantics. Default false leaves the response byte-identical (key absent). orderType is null for orders placed before 2026-06-27 (start of order-status coverage) or when the order status is unknown. Adds roughly tens of milliseconds per page of 1000 fills.
curl --request GET \
--url https://api.hypedexer.com/fills/recent \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hypedexer.com/fills/recent"
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/fills/recent', 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/fills/recent",
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/fills/recent"
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/fills/recent")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/fills/recent")
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": "Fetched 2 recent fills (compact)",
"data": [
{
"user": "0x654086857e1fad6dcf05cf6695cce51ea3984268",
"coin": "ETH",
"coinMeaning": "ETH",
"px": 2630.9,
"sz": 0.419,
"side": "B",
"time": "2026-09-19T07:10:19.398999",
"startPosition": -7.0988,
"dir": "Close Short",
"closedPnl": -0.9637,
"hash": "0x0f8965b4bc18ff8d11030444ba78d301e2007d9a571c1e5fb35211077b1cd977",
"oid": 549645125989,
"tid": 382659237386851,
"fee": 0.011023,
"feeToken": "USDC",
"typeTrade": "perp",
"isLiquidation": 0,
"liquidationRole": "none",
"liqMarkPx": null,
"liqMethod": null,
"liquidatedUser": null,
"notional": 1102.3471,
"priorityGas": null
},
{
"user": "0x46c9a4d12683041a1e279367e124ccc09f96a453",
"coin": "DOGE",
"coinMeaning": "DOGE",
"px": 0.087304,
"sz": 1718,
"side": "B",
"time": "2026-09-19T07:10:19.332000",
"startPosition": 18932,
"dir": "Open Long",
"closedPnl": 0,
"hash": "0x66a957b34d6493f468230444ba78d20203840098e867b2c60a7203060c686ddf",
"oid": 549645143541,
"tid": 996404197999085,
"fee": 0.059995,
"feeToken": "USDC",
"typeTrade": "perp",
"isLiquidation": 0,
"liquidationRole": "none",
"liqMarkPx": null,
"liqMethod": null,
"liquidatedUser": null,
"notional": 149.98827200000002,
"priorityGas": null
}
],
"total_count": null,
"execution_time_ms": 1622.44,
"next_cursor": "1789801819332:996404197999085",
"has_more": true
}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.
Headers
Query Parameters
User address
Coin symbol
Side (B=Buy, A=Sell)
B, A Minimum notional amount in USD
ASC, DESC Filter by priority gas: true = only fills with priorityGas > 0, false = only fills without, omit = no filter.
Set to true to add orderType to each fill: the originating order's type (e.g. Limit, Market, Stop Market, Take Profit Limit), resolved server-side from the order status by (user, oid); null when unknown. Default false: response unchanged, key absent.