Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/stablecoins-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/stablecoins-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stablecoins-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stablecoins-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/stablecoins-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "source": "DefiLlama stablecoins (live)",
        "service": "stablecoins-api",
        "endpoints": {
            "GET /v1/list": "Stablecoins ranked by circulating supply with dominance (peg_mechanism= filter, limit).",
            "GET /v1/meta": "This document.",
            "GET /v1/chains": "Total stablecoin supply per chain, ranked (limit).",
            "GET /v1/search": "Search stablecoins by symbol or name (q=).",
            "GET /v1/stablecoin": "One stablecoin: peg health + per-chain breakdown (symbol=USDT or name=)."
        },
        "description": "Live stablecoin supply, peg and dominance data from DefiLlama (stablecoins.llama.fi): circulating supply USD, price and peg deviation, peg type/mechanism (fiat-backed, crypto-backed, algorithmic), per-chain breakdown and market dominance. List the biggest, drill into one, see supply per chain, or search. Live, no key. Distinct from TVL, price and yield APIs.",
        "total_market_usd": 316035374285,
        "total_stablecoins": 380
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:25.808Z",
        "request_id": "0c5f9a12-ccae-4bd2-a623-5b6c4dc2f148"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}