/v1/meta
Endpoints & source
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}