/v1/chains
Stablecoin supply per chain
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/stablecoins-api/v1/chains" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stablecoins-api/v1/chains", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stablecoins-api/v1/chains");
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/chains",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 30,
"chains": [
{
"chain": "Ethereum",
"share_pct": 50.845,
"circulating_usd": 157530702199
},
{
"chain": "Tron",
"share_pct": 28.896,
"circulating_usd": 89526927628
},
{
"chain": "Solana",
"share_pct": 4.947,
"circulating_usd": 15327739371
},
{
"chain": "BSC",
"share_pct": 4.472,
"circulating_usd": 13854592774
},
{
"chain": "Hyperliquid L1",
"share_pct": 2.184,
"circulating_usd": 6765038490
},
{
"chain": "Base",
"share_pct": 1.533,
"circulating_usd": 4750295164
},
{
"chain": "Arbitrum",
"share_pct": 1.256,
"circulating_usd": 3889864510
},
{
"chain": "Polygon",
"share_pct": 1.126,
"circulating_usd": 3487316070
},
{
"chain": "Aptos",
"share_pct": 0.6,
"circulating_usd": 1858756438
},
{
"chain": "X Layer",
"share_pct": 0.479,
"circulating_usd": 1484965965
},
{
"chain": "Avalanche",
"share_pct": 0.46,
"circulating_usd": 1426702336
},
{
"chain": "Plasma",
"share_pct": 0.294,
"circulating_usd": 911973651
},
{
"chain": "TON",
"share_pct": 0.259,
"circulating_usd": 802236321
},
{
"chain": "Stellar",
"share_pct": 0.259,
"circulating_usd": 800908763
},
{
"chain": "XRPL",
"share_pct": 0.246,
"circulating_usd": 762609817
},
{
"chain": "MegaETH",
"share_pct": 0.207,
"circulating_usd": 640922457
},
{
"chain": "OP Mainnet",
"share_pct": 0.179,
"circulating_usd": 554721327
},
{
"chain": "Mantle",
"share_pct": 0.174,
"circulating_usd": 540199976
},
{
"chain": "Sui",
"share_pct": 0.156,
"circulating_usd": 484848142
},
{
"chain": "Monad",
"share_pct": 0.136,
"circulating_usd": 422250396
},
{
…