User performance
curl --request GET \
--url https://api.hypedexer.com/users/{user}/performanceimport requests
url = "https://api.hypedexer.com/users/{user}/performance"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hypedexer.com/users/{user}/performance', 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}/performance",
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}/performance"
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}/performance")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/users/{user}/performance")
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
}Social Trading
User performance
Round-trip trade statistics over a rolling window: win rate, PnL, trade count, volume, average holding time and long/short ratio.
max_drawdown is measured on the cumulative realized-PnL curve of closed trades. When hourly account snapshots cover the window, equity_max_drawdown_usd / equity_max_drawdown_pct give the drawdown on real account value, and equity_snapshots says how many points backed it.
Round-trip trades are available from 2025-09-10.
GET
/
users
/
{user}
/
performance
User performance
curl --request GET \
--url https://api.hypedexer.com/users/{user}/performanceimport requests
url = "https://api.hypedexer.com/users/{user}/performance"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hypedexer.com/users/{user}/performance', 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}/performance",
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}/performance"
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}/performance")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/users/{user}/performance")
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).
Example:
"0x0000000000bdc2fd416def2d8688069052eb0f87"
Query Parameters
Rolling window. Ignored when start_time/end_time are supplied.
Available options:
7d, 30d, 90d, all