/v1/etf
One ETF's detail by ticker
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}