Aller au contenu
GET /v1/meta

Usage notes

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/defillama-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/defillama-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/defillama-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/defillama-api/v1/meta");
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/defillama-api/v1/meta",
    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": "DeFiLlama is the most-used analytics dashboard for decentralized finance, tracking Total Value Locked (TVL) — the dollar value deposited in DeFi protocols. /v1/protocols = DeFi protocols ranked by TVL, filterable by chain (chain=Ethereum) and category (category=Lending, Dexes, Liquid Staking, …), each with its slug, symbol, category, chains, TVL in USD and 1-day/7-day TVL change; /v1/protocol?slug=aave = a single protocol's profile and its current TVL broken down by chain; /v1/chains = every blockchain ranked by the TVL deployed on it; /v1/stablecoins = stablecoins ranked by circulating supply, with peg type and mechanism. All values are in USD and reflect the latest snapshot. This is DeFi/on-chain analytics — distinct from token price feeds. Data from DeFiLlama (free, open). Use a protocol slug from /v1/protocols for /v1/protocol.",
        "source": "DeFiLlama — open DeFi TVL analytics (llama.fi)",
        "endpoints": [
            "/v1/protocols",
            "/v1/protocol",
            "/v1/chains",
            "/v1/stablecoins",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T16:23:42.607Z",
        "request_id": "7ce271d0-1e36-4542-ae69-708c4d784e71"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}