curl --request GET \
--url https://api.hypedexer.com/fills/import requests
url = "https://api.hypedexer.com/fills/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hypedexer.com/fills/', 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/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/"
req, _ := http.NewRequest("GET", url, nil)
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/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/fills/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"message": "OK",
"data": {}
}List fills (All = Spot + Perp)
Returns fills across Spot and Perp. 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 exactly one field to each fill row:
orderType(string or null) — the originating order’s type, resolved server-side from the order status by (user, oid). Observed values includeLimit,Market,Stop Market,Take Profit Limit; treat this as an open set, not a fixed enum.- With the default
include_order_type=falsethe response is byte-identical to before — the key is absent (not null), so existing integrations are unaffected. orderTypeisnullwhen the originating order status is unknown: orders placed before 2026-06-27 (start of order-status coverage), plus a small share of gaps in that dataset.- Cost: adds roughly tens of milliseconds per page of 1000 fills.
Example:
curl -X 'GET' \
'https://api.hypedexer.com/fills/?user=0x079f56bfd27f71cbd278c27c7b121e7ef180a5be&limit=1000&include_order_type=true' \
-H 'accept: application/json' \
-H 'X-API-Key: YOUR_API_KEY'
Each returned fill row gains exactly one field:
[
{ "...": "existing fill fields unchanged", "oid": 50583850248, "orderType": "Limit" },
{ "...": "existing fill fields unchanged", "oid": 31207118820, "orderType": null }
]
curl --request GET \
--url https://api.hypedexer.com/fills/import requests
url = "https://api.hypedexer.com/fills/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hypedexer.com/fills/', 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/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/"
req, _ := http.NewRequest("GET", url, nil)
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/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/fills/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"message": "OK",
"data": {}
}Headers
Query Parameters
User address
Coin symbol
Side (B=Buy, A=Sell)
B, A Minimum notional amount in USD
ISO 8601 UTC start time
ISO 8601 UTC end time
Max items to return
Pagination cursor (format: <time_ms>:<tid>)
Sort order
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.