/v1/protocols
DeFi protocols by TVL
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/defi-api/v1/protocols" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/defi-api/v1/protocols", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/defi-api/v1/protocols");
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/defi-api/v1/protocols",
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": {
"count": 50,
"total": 158,
"protocols": [
{
"tvl": 13327114309,
"url": "https://aave.com",
"logo": "https://icons.llama.fi/aave-v3.png",
"mcap": null,
"name": "Aave V3",
"slug": "aave-v3",
"chain": "Multi-Chain",
"symbol": "AAVE",
"category": "Lending",
"change_1d": -0.15,
"change_7d": -2.68
},
{
"tvl": 7327683891,
"url": "https://app.morpho.org",
"logo": "https://icons.llama.fi/morpho-blue.png",
"mcap": null,
"name": "Morpho Blue",
"slug": "morpho-blue",
"chain": "Multi-Chain",
"symbol": "MORPHO",
"category": "Lending",
"change_1d": 0.03,
"change_7d": -0.49
},
{
"tvl": 3626205142,
"url": "https://app.spark.fi/points/KNQ5HD",
"logo": "https://icons.llama.fi/sparklend.jpg",
"mcap": null,
"name": "SparkLend",
"slug": "sparklend",
"chain": "Multi-Chain",
"symbol": "SPK",
"category": "Lending",
"change_1d": 1.76,
"change_7d": 9.82
},
{
"tvl": 2030386622,
"url": "https://www.maple.finance",
"logo": "https://icons.llama.fi/maple.png",
"mcap": null,
"name": "Maple",
"slug": "maple",
"chain": "Multi-Chain",
"symbol": "SYRUP",
"category": "Lending",
"change_1d": 0.22,
"change_7d": 5.14
},
{
"tvl": 1187121248,
"url": "https://v3-app.compound.finance/",
"logo": "https://icons.llama.fi/compound-v3.png",
"mcap": null,
"name": "Compound V3",
"slug": "compound-v3",
"chain": "Multi-Chain",
"symbol": "COMP",
"category": "Lending",
"change_1d": -0.46,
"change_7d": -3.09
},
{
"tvl": 1180176104,
"url": "https://app.venus.io/#/core-pool",
"logo": "https://icons.llama.fi/venus-core-pool.jpg",
"mcap": null,
"name": "Venus Core Pool",
"slug": "venus-core-pool",
"chain": "Multi-Chain",
"symbol": "XVS",
"category": "Lending",
"change_1d": -0.01,
"change_7d": 1.36
},
{
"tvl": 728492212,
"url": "https://fluid.io/le
…