Aller au contenu
GET /v1/stablecoins

Stablecoin supplies

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/defi-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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