Skip to main content
POST
/
api
/
moex
/
markets
/
securities
/moex/markets/securities
curl --request POST \
  --url https://api.anysite.io/api/moex/markets/securities \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "engine": "stock",
  "market": "shares",
  "board": "<string>"
}
'
[
  {
    "secid": "<string>",
    "board_id": "<string>",
    "@type": "@moex_quote",
    "short_name": "<string>",
    "trading_status": "<string>",
    "bid": 123,
    "offer": 123,
    "spread": 123,
    "open": 123,
    "high": 123,
    "low": 123,
    "last": 123,
    "change": 123,
    "change_percent": 123,
    "wa_price": 123,
    "close_price": 123,
    "market_price": 123,
    "previous_price": 123,
    "num_trades": 123,
    "volume_today": 123,
    "value_today": 123,
    "value_today_usd": 123,
    "issue_capitalization": 123,
    "lot_size": 123,
    "currency": "<string>",
    "update_time": "<string>",
    "system_time": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of securities to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
engine
enum<string>
default:stock

Trading engine

Available options:
stock,
currency,
futures,
commodity,
agro,
otc,
money,
quotes,
state
market
enum<string>
default:shares

Market within the engine

Available options:
shares,
bonds,
index,
foreignshares,
ndm,
repo,
ccp,
otc,
standard,
classica,
selt,
forts,
options,
indicativerates
board
string | null

Board ID to restrict the snapshot to a single board (e.g. TQBR)

Response

Successful Response

secid
string
required
board_id
string
required
@type
string
default:@moex_quote
short_name
string | null
trading_status
string | null
bid
number | null
offer
number | null
spread
number | null
open
number | null
high
number | null
low
number | null
last
number | null
change
number | null
change_percent
number | null
wa_price
number | null
close_price
number | null
market_price
number | null
previous_price
number | null
num_trades
integer | null
volume_today
integer | null
value_today
number | null
value_today_usd
number | null
issue_capitalization
number | null
lot_size
integer | null
currency
string | null
update_time
string | null
system_time
string | null