Ir al contenido
GET /v1/coins

The altcoin universe measured against Bitcoin

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/altseason-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "note": "The curated top-altcoin universe (Binance USDT pairs, stablecoins excluded) measured against Bitcoin for the season index.",
        "coins": [
            "ETH",
            "SOL",
            "XRP",
            "BNB",
            "DOGE",
            "ADA",
            "TRX",
            "AVAX",
            "LINK",
            "DOT",
            "TON",
            "SHIB",
            "LTC",
            "BCH",
            "NEAR",
            "UNI",
            "APT",
            "ICP",
            "XLM",
            "ETC",
            "FIL",
            "HBAR",
            "ATOM",
            "ARB",
            "OP",
            "INJ",
            "IMX",
            "VET",
            "RENDER",
            "GRT",
            "AAVE",
            "ALGO",
            "SAND",
            "MANA",
            "AXS",
            "THETA",
            "EGLD",
            "FLOW",
            "XTZ",
            "CHZ",
            "SUI",
            "SEI",
            "TIA",
            "STX",
            "RUNE",
            "FTM",
            "GALA",
            "CRV",
            "DYDX",
            "LDO"
        ],
        "count": 50,
        "source": "Binance",
        "benchmark": "BTC"
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:22.792Z",
        "request_id": "1b5fcdb8-ac6c-494c-82b6-d4d21694faae"
    },
    "status": "ok",
    "message": "Coins retrieved successfully",
    "success": true
}