Skip to content
GET /v1/quote

Live quote for a share

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/moex-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}