Ir al contenido
GET /v1/ethereum

All spot Ethereum ETFs ranked by volume + aggregate

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

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "etfs": [
            {
                "name": "iShares Ethereum Trust ETF",
                "price": 12.56,
                "ticker": "ETHA",
                "volume": 25377559,
                "day_low": 12.46,
                "currency": "USD",
                "day_high": 12.76,
                "change_pct": 2.28,
                "prev_close": 12.28
            },
            {
                "name": "Grayscale Ethereum Staking Mini",
                "price": 15.83,
                "ticker": "ETH",
                "volume": 2764387,
                "day_low": 15.72,
                "currency": "USD",
                "day_high": 16.08,
                "change_pct": 2.33,
                "prev_close": 15.47
            },
            {
                "name": "Grayscale Ethereum Staking ETF ",
                "price": 13.48,
                "ticker": "ETHE",
                "volume": 2026663,
                "day_low": 13.36,
                "currency": "USD",
                "day_high": 13.68,
                "change_pct": 2.24,
                "prev_close": 13.18
            },
            {
                "name": "Fidelity Ethereum Fund",
                "price": 16.59,
                "ticker": "FETH",
                "volume": 1557449,
                "day_low": 16.45,
                "currency": "USD",
                "day_high": 16.84,
                "change_pct": 2.22,
                "prev_close": 16.23
            },
            {
                "name": "Bitwise Ethereum ETF",
                "price": 11.91,
                "ticker": "ETHW",
                "volume": 781202,
                "day_low": 11.82,
                "currency": "USD",
                "day_high": 12.09,
                "change_pct": 2.14,
                "prev_close": 11.66
            },
            {
                "name": "21Shares Core Ethereum ETF",
                "price": 22.81,
                "ticker": "CETH",
                "volume": 447886,
                "day_low": 22.68,
                "currency": "USD",
                "day_high": 23.28,
                "change_pct": 180.22,
                "prev_close": 8.14
            },
            {
                "name": "VanEck Ethereum ETF",
                "price": 24.4,
                "ticker": "ETHV",
                "volume": 54916,
                "day_low": 24.19,
                "currency": "USD",
                "day_high": 24.64,
                "change_pct": 2.41,
                "prev_close": 23.82
            },
            {
                "name": "Invesco Galaxy Ethereum ETF",
                "price": 16.63,
                "ticker": "QETH",
                "volume": 41427,
                "day_low": 16.48,
                "currency": "USD",
                "day_high": 16.8,
                "change_pct": 2.59,
                "prev_close": 16.21
            },
            {
                "name": "Franklin Ethereum ETF",
                "price": 12.64,
    
…