Skip to main content
GET
/
v1
/
public
/
strategy_vault
/
vault
/
info
Get Strategy Vault Info
curl --request GET \
  --url https://api-sv.orderly.org/v1/public/strategy_vault/vault/info
import requests

url = "https://api-sv.orderly.org/v1/public/strategy_vault/vault/info"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api-sv.orderly.org/v1/public/strategy_vault/vault/info', 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/info",
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/info"

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/info")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api-sv.orderly.org/v1/public/strategy_vault/vault/info")

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": [
      {
        "vault_id": "",
        "vault_address": "",
        "vault_type": "protocol",
        "vault_name": "Orderly OmniVault",
        "description": "Earn passive yields effortlessly, no trading expertise required. Deposit...",
        "sp_address": "xxxxxxx",
        "sp_name": "yyyy",
        "asset": "USDC",
        "vault_age": 180,
        "status": "live",
        "vault_start_time": 1702989203989,
        "performance_fee_rate": 0.3,
        "supported_chains": [
          {
            "chain_id": "1",
            "chain_name": "Ethereum"
          },
          {
            "chain_id": "42161",
            "chain_name": "Arbitrum"
          },
          {
            "chain_id": "8453",
            "chain_name": "Base"
          },
          {
            "chain_id": "10",
            "chain_name": "Optimism"
          },
          {
            "chain_id": "137",
            "chain_name": "Polygon"
          }
        ],
        "tvl": 123456789,
        "valid_hpr": 30,
        "30d_apy": 0.24,
        "recovery_30d_apy": 0,
        "vault_lifetime_net_pnl": 123456,
        "lp_counts": 1204,
        "total_main_shares": 123456789,
        "lifetime_apy": 0.21,
        "lock_duration": 48,
        "min_deposit_amount": 10,
        "min_withdrawal_amount": 10,
        "gate_threshold_pct": 0.1,
        "gate_triggered": false,
        "broker_id": "orderly"
      }
    ]
  }
}

Query Parameters

vault_id
string

return all if empty

status
string

return all if no filter

broker_ids
string

can filter multiple broker_id per query.

Response

200 - application/json

Success

success
boolean
Example:

true

timestamp
number
Example:

1702989203989

data
object