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

One stablecoin: peg + per-chain

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

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

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

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

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

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

curl "https://api.oanor.com/stablecoins-api/v1/stablecoin" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stablecoins-api/v1/stablecoin", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stablecoins-api/v1/stablecoin");
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/stablecoin",
    headers={"x-oanor-key": "oanor_test_..."}
)

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

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

{
    "data": {
        "stablecoin": {
            "id": "1",
            "name": "Tether",
            "price": 0.999575,
            "symbol": "USDT",
            "peg_type": "peggedUSD",
            "top_chains": [
                {
                    "chain": "Tron",
                    "circulating_usd": 88231135146
                },
                {
                    "chain": "Ethereum",
                    "circulating_usd": 79963862441
                },
                {
                    "chain": "BSC",
                    "circulating_usd": 9179769124
                },
                {
                    "chain": "Solana",
                    "circulating_usd": 2919050512
                },
                {
                    "chain": "Arbitrum",
                    "circulating_usd": 970284731
                },
                {
                    "chain": "Aptos",
                    "circulating_usd": 913989297
                },
                {
                    "chain": "Polygon",
                    "circulating_usd": 885254367
                },
                {
                    "chain": "Plasma",
                    "circulating_usd": 804707807
                },
                {
                    "chain": "TON",
                    "circulating_usd": 630519888
                },
                {
                    "chain": "Avalanche",
                    "circulating_usd": 382418189
                },
                {
                    "chain": "Mantle",
                    "circulating_usd": 350347750
                },
                {
                    "chain": "Hyperliquid L1",
                    "circulating_usd": 213234035
                },
                {
                    "chain": "OP Mainnet",
                    "circulating_usd": 182569332
                },
                {
                    "chain": "Kaia",
                    "circulating_usd": 168864973
                },
                {
                    "chain": "Celo",
                    "circulating_usd": 131867236
                }
            ],
            "chains_count": 127,
            "chains_total": 115,
            "dominance_pct": 59.121,
            "peg_mechanism": "fiat-backed",
            "circulating_usd": 186844172425,
            "peg_deviation_pct": -0.0425
        }
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:25.655Z",
        "request_id": "06845bf5-9e36-4d53-a468-8d436d36cabd"
    },
    "status": "ok",
    "message": "Stablecoin retrieved successfully",
    "success": true
}