Ir al contenido
GET /v1/etf

One ETF's detail by ticker

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

Respuesta de ejemplo

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

{
    "data": {
        "name": "iShares Bitcoin Trust ETF",
        "note": "One spot crypto ETF's current trading detail — price, daily change, volume and the day's high/low. Tracks market activity, not fund flows. Price in USD. Live, cached ~10m.",
        "asset": "Bitcoin",
        "price": 36.05,
        "source": "Yahoo Finance (per-ETF daily chart), keyless",
        "ticker": "IBIT",
        "volume": 29891545,
        "day_low": 35.67,
        "currency": "USD",
        "day_high": 36.48,
        "change_pct": 2.75,
        "prev_close": 35.08
    },
    "meta": {
        "timestamp": "2026-06-12T19:35:43.143Z",
        "request_id": "99569f15-81ba-4a92-8ec9-486363e242e0"
    },
    "status": "ok",
    "message": "ETF retrieved successfully",
    "success": true
}