/v1/tvl
Total collateral locked in Liquity (total + per-chain)
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/liquity-api/v1/tvl" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/liquity-api/v1/tvl", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/liquity-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/liquity-api/v1/tvl",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "Total collateral locked in Liquity backing the LUSD / BOLD stablecoins, in USD.",
"chains": [
{
"tvl": 197759952,
"chain": "Ethereum"
}
],
"source": "DeFiLlama",
"protocol": "Liquity",
"chain_count": 1,
"total_collateral_usd": 197759953.66
},
"meta": {
"timestamp": "2026-06-14T08:04:29.012Z",
"request_id": "a4a72e6d-0ee6-438c-8634-935f546a0777"
},
"status": "ok",
"message": "Liquity TVL retrieved successfully",
"success": true
}