Top trades
curl --request GET \
--url https://api.hypedexer.com/users/{user}/top-tradesimport requests
url = "https://api.hypedexer.com/users/{user}/top-trades"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hypedexer.com/users/{user}/top-trades', 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}/top-trades",
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}/top-trades"
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}/top-trades")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/users/{user}/top-trades")
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
Top trades
Best round-trip trades with ticker, direction, leverage, PnL, notional, entry/exit price and close date. Open positions can be ranked alongside closed ones (by unrealized PnL): they come back with status: "open", no closed_at, and an as_of snapshot time.
Leverage on a closed trade comes from the first hourly snapshot taken while the position was open, so trades closed before 2026-09-06 return leverage: null. Round-trip trades are available from 2025-09-10.
GET
/
users
/
{user}
/
top-trades
Top trades
curl --request GET \
--url https://api.hypedexer.com/users/{user}/top-tradesimport requests
url = "https://api.hypedexer.com/users/{user}/top-trades"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hypedexer.com/users/{user}/top-trades', 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}/top-trades",
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}/top-trades"
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}/top-trades")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/users/{user}/top-trades")
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
Required range:
1 <= x <= 50Rolling window on trade close time.
Available options:
7d, 30d, 90d, all pnl = biggest gains, pnl_abs = biggest moves either way, notional = largest positions, loss = worst losses.
Available options:
pnl, pnl_abs, notional, loss Rank currently open positions alongside closed trades.