/v1/meta
Endpoints & source
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/moex-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/moex-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sample": {
"imoex": 2515.33
},
"source": "Moscow Exchange ISS public API (iss.moex.com), keyless",
"markets": [
"shares",
"bonds",
"index"
],
"service": "moex-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/bonds": "Bond market with prices, yields and maturities (limit).",
"GET /v1/index": "Live value of one index (secid, default IMOEX).",
"GET /v1/quote": "Live quote for one share (secid).",
"GET /v1/history": "End-of-day price history (secid, market, days).",
"GET /v1/securities": "Securities directory for a market (market, limit)."
},
"description": "Live multi-market data from the Moscow Exchange (MOEX) with no key: the live quote for any share, the bond market with prices, yields and maturities, the value of any MOEX index (IMOEX, RTSI…), the end-of-day price history, and the securities directory for shares, bonds or indices. The Russia-equities / bonds-with-yield / multi-market layer for trading dashboards and screeners. Distinct from other exchange readers — MOEX spans shares, bonds and indices with yields. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:11:02.966Z",
"request_id": "c8b1388d-d3b6-4b15-be60-92ca4ffb95dc"
},
"status": "ok",
"message": "Meta",
"success": true
}