curl --request GET \
--url https://api.hypedexer.com/users/{user}/equity-historyimport requests
url = "https://api.hypedexer.com/users/{user}/equity-history"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hypedexer.com/users/{user}/equity-history', 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/users/{user}/equity-history",
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/users/{user}/equity-history"
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/users/{user}/equity-history")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/users/{user}/equity-history")
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": {},
"execution_time_ms": 123
}Equity history
Account value over time, from hourly on-chain account snapshots. Each point carries cash, open notional, unrealized PnL, account leverage and position count; summary adds the change over the window and its max drawdown.
account_value is the perp clearinghouse value — the same number Hyperliquid returns as marginSummary.accountValue. Spot balances and HIP-3 builder-dex positions are not included.
A point with perp_account_empty: true means the account held no position and no perp balance at that snapshot (a real 0, not missing data). Snapshot coverage starts 2026-09-05.
curl --request GET \
--url https://api.hypedexer.com/users/{user}/equity-historyimport requests
url = "https://api.hypedexer.com/users/{user}/equity-history"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hypedexer.com/users/{user}/equity-history', 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/users/{user}/equity-history",
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/users/{user}/equity-history"
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/users/{user}/equity-history")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/users/{user}/equity-history")
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": {},
"execution_time_ms": 123
}Headers
Path Parameters
Trader address (0x + 40 hex, any case).
"0x0000000000bdc2fd416def2d8688069052eb0f87"
Query Parameters
Rolling window ending at request time.
7d, 30d, 90d, all 1h returns every snapshot; 1d returns the last snapshot of each day.
1h, 1d