Zum Inhalt springen
GET /v1/quote

Live quote for a share

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/moex-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}