Ir al contenido
GET /v1/list

Stablecoins ranked by supply

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/stablecoins-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "count": 25,
        "stablecoins": [
            {
                "id": "1",
                "name": "Tether",
                "price": 0.999575,
                "symbol": "USDT",
                "peg_type": "peggedUSD",
                "chains_count": 127,
                "dominance_pct": 59.121,
                "peg_mechanism": "fiat-backed",
                "circulating_usd": 186844172425,
                "peg_deviation_pct": -0.0425
            },
            {
                "id": "2",
                "name": "USD Coin",
                "price": 0.999706,
                "symbol": "USDC",
                "peg_type": "peggedUSD",
                "chains_count": 151,
                "dominance_pct": 24.063,
                "peg_mechanism": "fiat-backed",
                "circulating_usd": 76046549673,
                "peg_deviation_pct": -0.0294
            },
            {
                "id": "209",
                "name": "Sky Dollar",
                "price": 0.99974,
                "symbol": "USDS",
                "peg_type": "peggedUSD",
                "chains_count": 7,
                "dominance_pct": 2.699,
                "peg_mechanism": "crypto-backed",
                "circulating_usd": 8531341863,
                "peg_deviation_pct": -0.026
            },
            {
                "id": "262",
                "name": "World Liberty Financial USD",
                "price": 0.998593,
                "symbol": "USD1",
                "peg_type": "peggedUSD",
                "chains_count": 8,
                "dominance_pct": 1.467,
                "peg_mechanism": "fiat-backed",
                "circulating_usd": 4636964271,
                "peg_deviation_pct": -0.1407
            },
            {
                "id": "146",
                "name": "Ethena USDe",
                "price": 0.999484,
                "symbol": "USDe",
                "peg_type": "peggedUSD",
                "chains_count": 28,
                "dominance_pct": 1.42,
                "peg_mechanism": "crypto-backed",
                "circulating_usd": 4488445252,
                "peg_deviation_pct": -0.0516
            },
            {
                "id": "5",
                "name": "Dai",
                "price": 0.99953,
                "symbol": "DAI",
                "peg_type": "peggedUSD",
                "chains_count": 49,
                "dominance_pct": 1.406,
                "peg_mechanism": "crypto-backed",
                "circulating_usd": 4442371711,
                "peg_deviation_pct": -0.047
            },
            {
                "id": "173",
                "name": "BlackRock USD",
                "price": 1,
                "symbol": "BUIDL",
                "peg_type": "peggedUSD",
                "chains_count": 8,
                "dominance_pct": 0.954,
                "peg_mechanism": "fiat-backed",
                "circulating_usd": 3015959335,
                "peg_deviation_pct": 0
     
…