/v1/tvl
Full TVL breakdown
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/marinade-api/v1/tvl" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/marinade-api/v1/tvl", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/marinade-api/v1/tvl");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/marinade-api/v1/tvl",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"chain": "solana",
"source": "Marinade",
"total_sol": 6630511.8246,
"total_usd": 416172363.07,
"staked_sol": 2566867.0513,
"staked_usd": 161112619.16,
"liquidity_sol": 7531.5072,
"liquidity_usd": 472724.46,
"self_staked_sol": 1214034.7252,
"self_staked_usd": 76200407.12,
"standard_staked_sol": 1352832.3261,
"msol_directed_stake_sol": 513373.4103,
"total_virtual_staked_sol": 2536759.0896,
"marinade_native_stake_sol": 2620686.4305,
"marinade_native_stake_usd": 164490659.78,
"marinade_select_stake_sol": 1149073.6273
},
"meta": {
"timestamp": "2026-06-10T22:57:28.314Z",
"request_id": "d917f35d-192e-4299-8ea0-d5e88625feee"
},
"status": "ok",
"message": "TVL retrieved successfully",
"success": true
}