Skip to main content
POST
/
api
/
moex
/
securities
/
search
/moex/securities/search
curl --request POST \
  --url https://api.anysite.io/api/moex/securities/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "traded_only": false,
  "language": "ru"
}
'
[
  {
    "secid": "<string>",
    "@type": "@moex_search_result",
    "short_name": "<string>",
    "name": "<string>",
    "isin": "<string>",
    "regnumber": "<string>",
    "type": "<string>",
    "group": "<string>",
    "primary_board": "<string>",
    "is_traded": false,
    "emitent_id": 123,
    "emitent_title": "<string>",
    "emitent_inn": "<string>",
    "emitent_okpo": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search query — ticker, name, ISIN or registration number

Minimum string length: 1
count
integer
required

Number of results to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
group
enum<string> | null

Filter results to a single security group

Available options:
stock_shares,
stock_bonds,
stock_index,
stock_dr,
stock_foreign_shares,
stock_eurobond,
stock_ppif,
stock_etf,
stock_qnv,
stock_gcc,
stock_deposit,
stock_mortgage,
currency_selt,
currency_metal,
currency_futures,
currency_indices,
currency_otcindices,
futures_forts,
futures_options
engine
enum<string> | null

Filter results to a single trading engine

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

Filter results to a single market

Available options:
shares,
bonds,
index,
foreignshares,
ndm,
repo,
ccp,
otc,
standard,
classica,
selt,
forts,
options,
indicativerates
traded_only
boolean
default:false

Return only securities currently admitted to trading

language
enum<string>
default:ru

Language for localized text fields

Available options:
ru,
en

Response

Successful Response

secid
string
required
@type
string
default:@moex_search_result
short_name
string | null
name
string | null
isin
string | null
regnumber
string | null
type
string | null
group
string | null
primary_board
string | null
is_traded
boolean
default:false
emitent_id
integer | null
emitent_title
string | null
emitent_inn
string | null
emitent_okpo
string | null