Get builder's leaderboard
curl --request GET \
--url https://api.orderly.org/v1/broker/leaderboard/dailyimport requests
url = "https://api.orderly.org/v1/broker/leaderboard/daily"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orderly.org/v1/broker/leaderboard/daily', 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.orderly.org/v1/broker/leaderboard/daily",
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.orderly.org/v1/broker/leaderboard/daily"
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.orderly.org/v1/broker/leaderboard/daily")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orderly.org/v1/broker/leaderboard/daily")
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,
"timestamp": 1702989203989,
"data": {
"snapshot_time": 1784278800000,
"rows": [
{
"account_id": "0x0b88771b33b176c4c3066a0742877988ee6aefccf8c3d98a31bcaefa23ca8b5a",
"date": "2026-06-01",
"perp_volume": 283.648664,
"perp_maker_volume": 0,
"perp_taker_volume": 283.648664,
"total_fee": 0.056732,
"broker_fee": 0.028365,
"address": "0xd43a72d2212d8c285299f2b2655f8ccb946e9d8b",
"realized_pnl": -5.7548125,
"broker_id": "fillx"
}
],
"meta": {
"records_per_page": 50,
"current_page": 1,
"total": 608
}
}
}User data
Get builder's leaderboard
Limit 10 requests per 60 seconds
GET /v1/broker/leaderboard/daily
The provided start_date/end_date has to be within a 90-day range.
Updated hourly
GET
/
v1
/
broker
/
leaderboard
/
daily
Get builder's leaderboard
curl --request GET \
--url https://api.orderly.org/v1/broker/leaderboard/dailyimport requests
url = "https://api.orderly.org/v1/broker/leaderboard/daily"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orderly.org/v1/broker/leaderboard/daily', 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.orderly.org/v1/broker/leaderboard/daily",
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.orderly.org/v1/broker/leaderboard/daily"
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.orderly.org/v1/broker/leaderboard/daily")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orderly.org/v1/broker/leaderboard/daily")
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,
"timestamp": 1702989203989,
"data": {
"snapshot_time": 1784278800000,
"rows": [
{
"account_id": "0x0b88771b33b176c4c3066a0742877988ee6aefccf8c3d98a31bcaefa23ca8b5a",
"date": "2026-06-01",
"perp_volume": 283.648664,
"perp_maker_volume": 0,
"perp_taker_volume": 283.648664,
"total_fee": 0.056732,
"broker_fee": 0.028365,
"address": "0xd43a72d2212d8c285299f2b2655f8ccb946e9d8b",
"realized_pnl": -5.7548125,
"broker_id": "fillx"
}
],
"meta": {
"records_per_page": 50,
"current_page": 1,
"total": 608
}
}
}Query Parameters
Format YYYY-MM-DD
Format YYYY-MM-DD
start from 1
Filter by the full stored order tag, including a current-format enum:<owning_broker_id>:<enum_id> tag.
Maximum string length:
128if the broker_id is empty, return all users
Allow sort by
ascending_realized_pnl
descending_realized_pnl
ascending_perp_volume
descending_perp_volume
address: Sum the value across all builders.
address_per_builder: Sum the value separately for each builder.