Fetch live vault state and partner capability flags.
curl --request GET \
--url https://portal.signalite.ai/api/v1/vaultimport requests
url = "https://portal.signalite.ai/api/v1/vault"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://portal.signalite.ai/api/v1/vault', 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://portal.signalite.ai/api/v1/vault",
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://portal.signalite.ai/api/v1/vault"
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://portal.signalite.ai/api/v1/vault")
.asString();require 'uri'
require 'net/http'
url = URI("https://portal.signalite.ai/api/v1/vault")
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,
"data": {
"product": {
"slug": "<string>",
"name": "<string>",
"protocol": "<string>",
"chainId": 123
},
"addresses": {
"contractVersion": "shlp-pipe-v2",
"vault": "<string>",
"asset": "<string>",
"strategy": "<string>",
"navSource": "<string>",
"treasury": "<string>",
"core": "<string>",
"share": "<string>",
"depositPipe": "<string>",
"redemptionPipe": "<string>"
},
"asset": {
"symbol": "<string>",
"decimals": 123,
"address": "<string>"
},
"share": {
"symbol": "<string>",
"decimals": 123,
"address": "<string>"
},
"analytics": {
"sharePrice": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"tvl": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"totalSupply": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"caps": {
"maxTvl": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"maxUserDeposit": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"globalDepositRoom": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"fees": {
"performanceFeeBps": 123,
"managementFeeBps": 123
},
"liquidity": {
"vaultUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"reservedAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"instantRedeemCapacity": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"escrowedShares": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"proof": {
"buckets": {
"vaultUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"strategyEvmUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"strategyCoreSpotUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"strategyCorePerpUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"strategyHlpEquity": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"pendingBridgeIn": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"pendingBridgeOut": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"reservedAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"escrowedShares": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"reconciliation": {
"grossManagedAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"reservedLiabilities": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"netShareholderAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"reportedTotalAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"diff": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
}
},
"capabilities": {
"deposit": true,
"instantRedeem": true,
"asyncRedeem": true,
"fulfillRedeem": true,
"claimRedeem": true,
"cancelRedeem": true
},
"status": {
"depositsPaused": true,
"ready": {
"display": true,
"history": true,
"activity": true,
"operations": true,
"deposits": true,
"reasonCodes": [
"VAULT_READ_UNAVAILABLE"
]
}
}
},
"meta": {
"updatedAt": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}Product
Fetch live vault state and partner capability flags.
GET
/
api
/
v1
/
vault
Fetch live vault state and partner capability flags.
curl --request GET \
--url https://portal.signalite.ai/api/v1/vaultimport requests
url = "https://portal.signalite.ai/api/v1/vault"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://portal.signalite.ai/api/v1/vault', 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://portal.signalite.ai/api/v1/vault",
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://portal.signalite.ai/api/v1/vault"
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://portal.signalite.ai/api/v1/vault")
.asString();require 'uri'
require 'net/http'
url = URI("https://portal.signalite.ai/api/v1/vault")
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,
"data": {
"product": {
"slug": "<string>",
"name": "<string>",
"protocol": "<string>",
"chainId": 123
},
"addresses": {
"contractVersion": "shlp-pipe-v2",
"vault": "<string>",
"asset": "<string>",
"strategy": "<string>",
"navSource": "<string>",
"treasury": "<string>",
"core": "<string>",
"share": "<string>",
"depositPipe": "<string>",
"redemptionPipe": "<string>"
},
"asset": {
"symbol": "<string>",
"decimals": 123,
"address": "<string>"
},
"share": {
"symbol": "<string>",
"decimals": 123,
"address": "<string>"
},
"analytics": {
"sharePrice": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"tvl": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"totalSupply": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"caps": {
"maxTvl": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"maxUserDeposit": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"globalDepositRoom": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"fees": {
"performanceFeeBps": 123,
"managementFeeBps": 123
},
"liquidity": {
"vaultUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"reservedAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"instantRedeemCapacity": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"escrowedShares": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"proof": {
"buckets": {
"vaultUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"strategyEvmUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"strategyCoreSpotUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"strategyCorePerpUsdc": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"strategyHlpEquity": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"pendingBridgeIn": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"pendingBridgeOut": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"reservedAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"escrowedShares": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"reconciliation": {
"grossManagedAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"reservedLiabilities": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"netShareholderAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"reportedTotalAssets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"diff": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
}
},
"capabilities": {
"deposit": true,
"instantRedeem": true,
"asyncRedeem": true,
"fulfillRedeem": true,
"claimRedeem": true,
"cancelRedeem": true
},
"status": {
"depositsPaused": true,
"ready": {
"display": true,
"history": true,
"activity": true,
"operations": true,
"deposits": true,
"reasonCodes": [
"VAULT_READ_UNAVAILABLE"
]
}
}
},
"meta": {
"updatedAt": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}