Get Strategy Vault Performance
curl --request GET \
--url https://api-sv.orderly.org/v1/public/strategy_vault/vault/performanceimport requests
url = "https://api-sv.orderly.org/v1/public/strategy_vault/vault/performance"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-sv.orderly.org/v1/public/strategy_vault/vault/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-sv.orderly.org/v1/public/strategy_vault/vault/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-sv.orderly.org/v1/public/strategy_vault/vault/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-sv.orderly.org/v1/public/strategy_vault/vault/performance")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sv.orderly.org/v1/public/strategy_vault/vault/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,
"timestamp": 1702989203989,
"data": {
"rows": [
[
{
"time_range": "24h",
"incremental_net_pnl": 5678.9,
"max_drawdown": 0.015,
"pnl_max_drawdown": 0.012,
"fees": 1234.5,
"volume": 456789
},
{
"time_range": "7d",
"incremental_net_pnl": -45678.9,
"max_drawdown": 0.02,
"pnl_max_drawdown": 0.04,
"fees": 7890.5,
"volume": 1234567
},
{
"time_range": "30d",
"incremental_net_pnl": 172567.73,
"max_drawdown": 0.0253,
"pnl_max_drawdown": 0.0051,
"fees": 56789,
"volume": 3456789
},
{
"time_range": "all_time",
"incremental_net_pnl": 1234567.89,
"max_drawdown": 0.03,
"pnl_max_drawdown": 0.08,
"fees": 98765,
"volume": 9876543
}
]
]
}
}Vault statistics
Get Strategy Vault Performance
Limit: 10 requests per second per IP address
GET /v1/public/strategy_vault/vault/performance
GET
/
v1
/
public
/
strategy_vault
/
vault
/
performance
Get Strategy Vault Performance
curl --request GET \
--url https://api-sv.orderly.org/v1/public/strategy_vault/vault/performanceimport requests
url = "https://api-sv.orderly.org/v1/public/strategy_vault/vault/performance"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-sv.orderly.org/v1/public/strategy_vault/vault/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-sv.orderly.org/v1/public/strategy_vault/vault/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-sv.orderly.org/v1/public/strategy_vault/vault/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-sv.orderly.org/v1/public/strategy_vault/vault/performance")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sv.orderly.org/v1/public/strategy_vault/vault/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,
"timestamp": 1702989203989,
"data": {
"rows": [
[
{
"time_range": "24h",
"incremental_net_pnl": 5678.9,
"max_drawdown": 0.015,
"pnl_max_drawdown": 0.012,
"fees": 1234.5,
"volume": 456789
},
{
"time_range": "7d",
"incremental_net_pnl": -45678.9,
"max_drawdown": 0.02,
"pnl_max_drawdown": 0.04,
"fees": 7890.5,
"volume": 1234567
},
{
"time_range": "30d",
"incremental_net_pnl": 172567.73,
"max_drawdown": 0.0253,
"pnl_max_drawdown": 0.0051,
"fees": 56789,
"volume": 3456789
},
{
"time_range": "all_time",
"incremental_net_pnl": 1234567.89,
"max_drawdown": 0.03,
"pnl_max_drawdown": 0.08,
"fees": 98765,
"volume": 9876543
}
]
]
}
}⌘I