Μετάβαση στο περιεχόμενο
GET /v1/chains

Stablecoin supply per chain

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/stablecoins-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
            },
            {
        
…