/v1/stablecoins
Stablecoin supplies
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/defi-api/v1/stablecoins" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/defi-api/v1/stablecoins", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/defi-api/v1/stablecoins");
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/stablecoins",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 50,
"total": 380,
"stablecoins": [
{
"name": "Tether",
"price": 1,
"symbol": "USDT",
"peg_type": "USD",
"mechanism": "fiat-backed",
"circulating": 188095264632
},
{
"name": "USD Coin",
"price": 1,
"symbol": "USDC",
"peg_type": "USD",
"mechanism": "fiat-backed",
"circulating": 75922898942
},
{
"name": "Sky Dollar",
"price": 1,
"symbol": "USDS",
"peg_type": "USD",
"mechanism": "crypto-backed",
"circulating": 8823263363
},
{
"name": "World Liberty Financial USD",
"price": 1,
"symbol": "USD1",
"peg_type": "USD",
"mechanism": "fiat-backed",
"circulating": 4737126484
},
{
"name": "Dai",
"price": 1,
"symbol": "DAI",
"peg_type": "USD",
"mechanism": "crypto-backed",
"circulating": 4580789509
},
{
"name": "Ethena USDe",
"price": 1,
"symbol": "USDe",
"peg_type": "USD",
"mechanism": "crypto-backed",
"circulating": 4499977349
},
{
"name": "PayPal USD",
"price": 1,
"symbol": "PYUSD",
"peg_type": "USD",
"mechanism": "fiat-backed",
"circulating": 3052462554
},
{
"name": "BlackRock USD",
"price": 1,
"symbol": "BUIDL",
"peg_type": "USD",
"mechanism": "fiat-backed",
"circulating": 2981347321
},
{
"name": "Circle USYC",
"price": 1.13,
"symbol": "USYC",
"peg_type": "USD",
"mechanism": "fiat-backed",
"circulating": 2957363671
},
{
"name": "Global Dollar",
"price": 1,
"symbol": "USDG",
"peg_type": "USD",
"mechanism": "fiat-backed",
"circulating": 2547043979
},
{
"name": "Ondo US Dollar Yield",
"price": 1.12,
"symbol": "USDY",
"peg_type": "USD",
"mechanism": "fiat-backed",
"circulating": 2124592150
},
{
"name": "Ripple USD",
"price": 1,
"symbol": "RLUSD",
…