/v1/history
End-of-day price history
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/moex-api/v1/history" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/moex-api/v1/history", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/moex-api/v1/history");
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/moex-api/v1/history",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "The end-of-day price history for one MOEX security — each day's close, volume and traded value, newest first. Pass secid (e.g. SBER), market (shares, bonds or index; default shares) and days (5-365, default 30).",
"count": 20,
"secid": "SBER",
"market": "shares",
"source": "MOEX",
"history": [
{
"date": "2026-06-11",
"close": 321.2,
"value": 3163583242.84,
"volume": 9826768
},
{
"date": "2026-06-10",
"close": 321.88,
"value": 7170354506.33,
"volume": 22329203
},
{
"date": "2026-06-09",
"close": 321.02,
"value": 8284345276.41,
"volume": 25885632
},
{
"date": "2026-06-08",
"close": 320,
"value": 8121926312.55,
"volume": 25297011
},
{
"date": "2026-06-05",
"close": 322.19,
"value": 4000280809.23,
"volume": 12413671
},
{
"date": "2026-06-04",
"close": 322.92,
"value": 5455432307.34,
"volume": 16872624
},
{
"date": "2026-06-03",
"close": 323.37,
"value": 6744383376.24,
"volume": 20741230
},
{
"date": "2026-06-02",
"close": 326.75,
"value": 8627612174.83,
"volume": 26541120
},
{
"date": "2026-06-01",
"close": 322.99,
"value": 6087772507.27,
"volume": 18888303
},
{
"date": "2026-05-29",
"close": 320.57,
"value": 5531357567.21,
"volume": 17242709
},
{
"date": "2026-05-28",
"close": 322.3,
"value": 4839616961.04,
"volume": 14996154
},
{
"date": "2026-05-27",
"close": 322.5,
"value": 6733325904.91,
"volume": 20931789
},
{
"date": "2026-05-26",
"close": 320.05,
"value": 6063906052.15,
"volume": 18942663
},
{
"date": "2026-05-25",
"close": 320.38,
"value": 12134083885.5,
"volume": 37794430
},
{
"date": "2026-05-22",
"close": 322.46,
"value": 8483391084.72,
"volume": 26179278
},
{
…