Naar de inhoud
GET /v1/securities

Securities directory for a market

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/moex-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/moex-api/v1/securities" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/moex-api/v1/securities", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/moex-api/v1/securities");
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/securities",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "The MOEX securities directory for one market — shares, bonds or index — each with its ticker and name (plus price/lot for shares, yield/maturity for bonds). Pass market (shares, bonds or index) and limit (max 200). Use a secid with the quote, history and index endpoints.",
        "count": 50,
        "market": "shares",
        "source": "MOEX",
        "securities": [
            {
                "name": "iАРТГЕН ао",
                "secid": "ABIO",
                "lot_size": 1,
                "previous_price": 54.94
            },
            {
                "name": "АбрауДюрсо",
                "secid": "ABRD",
                "lot_size": 1,
                "previous_price": 137
            },
            {
                "name": "Система ао",
                "secid": "AFKS",
                "lot_size": 1,
                "previous_price": 12.5
            },
            {
                "name": "Аэрофлот",
                "secid": "AFLT",
                "lot_size": 1,
                "previous_price": 43
            },
            {
                "name": "АЛРОСА ао",
                "secid": "ALRS",
                "lot_size": 1,
                "previous_price": 23.26
            },
            {
                "name": "АшинскийМЗ",
                "secid": "AMEZ",
                "lot_size": 1,
                "previous_price": 71.6
            },
            {
                "name": "АПРИ",
                "secid": "APRI",
                "lot_size": 1,
                "previous_price": 15.995
            },
            {
                "name": "Аптеки36и6",
                "secid": "APTK",
                "lot_size": 1,
                "previous_price": 5.88
            },
            {
                "name": "Арсагера",
                "secid": "ARSA",
                "lot_size": 1,
                "previous_price": 7.49
            },
            {
                "name": "АстрЭнСб",
                "secid": "ASSB",
                "lot_size": 1,
                "previous_price": 3.04
            },
            {
                "name": "iБАЗИС",
                "secid": "BAZA",
                "lot_size": 1,
                "previous_price": 90.16
            },
            {
                "name": "БашИнСв ап",
                "secid": "BISVP",
                "lot_size": 1,
                "previous_price": 7.5
            },
            {
                "name": "Белон ао",
                "secid": "BLNG",
                "lot_size": 1,
                "previous_price": 14.18
            },
            {
                "name": "БСП ао",
                "secid": "BSPB",
                "lot_size": 1,
                "previous_price": 284.12
            },
            {
                "name": "БСП ап",
                "secid": "BSPBP",
                "lot_size": 1,
                "previous_price": 63.7
            },
            {
                "name": "СТГ",
                "sec
…