/v1/etf
One ETF's detail by ticker
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"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
}