/v1/chains
Per-chain circulating breakdown for a stablecoin
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/stablecoinsupply-api/v1/chains" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stablecoinsupply-api/v1/chains", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stablecoinsupply-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/stablecoinsupply-api/v1/chains",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"id": "1",
"note": "Where this stablecoin's supply lives, per chain, by current circulating USD.",
"count": 50,
"chains": [
{
"chain": "Tron",
"change_1d_pct": 0,
"change_7d_pct": -0.57,
"circulating_usd": 87845445169.51
},
{
"chain": "Ethereum",
"change_1d_pct": -0.02,
"change_7d_pct": 0.04,
"circulating_usd": 80082586124.08
},
{
"chain": "BSC",
"change_1d_pct": 0,
"change_7d_pct": 0,
"circulating_usd": 9179724786.87
},
{
"chain": "Solana",
"change_1d_pct": 0,
"change_7d_pct": 5.97,
"circulating_usd": 2659099195.36
},
{
"chain": "Arbitrum",
"change_1d_pct": 0.87,
"change_7d_pct": -1.05,
"circulating_usd": 1006784250.06
},
{
"chain": "Aptos",
"change_1d_pct": 0,
"change_7d_pct": 2.41,
"circulating_usd": 976909425.69
},
{
"chain": "Plasma",
"change_1d_pct": -0.02,
"change_7d_pct": 5.61,
"circulating_usd": 882309360.14
},
{
"chain": "Polygon",
"change_1d_pct": 0.13,
"change_7d_pct": -0.23,
"circulating_usd": 881667810.16
},
{
"chain": "TON",
"change_1d_pct": 0,
"change_7d_pct": 0,
"circulating_usd": 630515693.69
},
{
"chain": "Avalanche",
"change_1d_pct": 0,
"change_7d_pct": -4.63,
"circulating_usd": 412387067.94
},
{
"chain": "Mantle",
"change_1d_pct": -0.19,
"change_7d_pct": 5.71,
"circulating_usd": 374534634.02
},
{
"chain": "Hyperliquid L1",
"change_1d_pct": 0.16,
"change_7d_pct": -8.23,
"circulating_usd": 192718711.43
},
{
"chain": "OP Mainnet",
"change_1d_pct": 0.4,
"change_7d_pct": -8.09,
"circulating_usd": 187707541.93
},
{
"chain": "Kaia",
"change_1d_pct": 0,
"change_7d_pct": -10.59,
"circulating_usd": 168863850.01
},
{
"chain": "Celo",
"change_1d_pct": 0,
"change_7d_pct": -2.27,
"circulating_usd": 128867654.1
…