Naar de inhoud
GET /v1/stablecoins

Stablecoin supplies

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/defi-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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",
             
…