Zum Inhalt springen
GET /v1/securities

Securities directory for a market

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

Beispiel-Response

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