/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}