/v1/quote
Live quote for a share
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/moex-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/moex-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/moex-api/v1/quote");
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/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"low": 321.2,
"high": 323.5,
"last": 323.16,
"name": "Сбербанк",
"note": "The live quote for one MOEX-listed share — last price, open/high/low, previous price, percent change, today's value and volume, and lot size. Pass secid (the MOEX ticker, e.g. SBER, GAZP, LKOH). Use /v1/securities to list tickers.",
"open": 321.3,
"board": "TQBR",
"secid": "SBER",
"source": "MOEX",
"updated": "19:00:02",
"lot_size": 1,
"value_today": 1065851599,
"volume_today": 3307357,
"change_percent": 0,
"previous_price": 320.29
},
"meta": {
"timestamp": "2026-06-15T02:11:02.258Z",
"request_id": "7fb19d6b-6155-4db4-928e-58126fea9775"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}