/v1/latest
Intraday snapshot
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/intraday-api/v1/latest" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/intraday-api/v1/latest", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/intraday-api/v1/latest");
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/intraday-api/v1/latest",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"type": "EQUITY",
"price": 295.63,
"change": 4.05,
"source": "Yahoo Finance",
"symbol": "AAPL",
"day_low": 289.6000061035156,
"currency": "USD",
"day_high": 297,
"day_open": 293.7200012207031,
"exchange": "NasdaqGS",
"timezone": "America/New_York",
"change_pct": 1.389,
"day_volume": 31814827,
"last_bar_time": "2026-06-11T19:55:00.000Z",
"previous_close": 291.58,
"fifty_two_week_low": 195.07,
"fifty_two_week_high": 317.4
},
"meta": {
"timestamp": "2026-06-12T01:41:39.151Z",
"request_id": "eaf7b4da-3cbe-463c-930a-3dbb4d54d2da"
},
"status": "ok",
"message": "Latest snapshot retrieved successfully",
"success": true
}