/v1/latest
Intraday snapshot
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}