Skip to main content
POST
/
api
/
moex
/
securities
/moex/securities
curl --request POST \
  --url https://api.anysite.io/api/moex/securities \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "security": "<string>",
  "timeout": 300,
  "language": "ru"
}
'
[
  {
    "secid": "<string>",
    "@type": "@moex_security",
    "short_name": "<string>",
    "name": "<string>",
    "latin_name": "<string>",
    "issue_name": "<string>",
    "isin": "<string>",
    "regnumber": "<string>",
    "issue_size": 123,
    "face_value": 123,
    "face_unit": "<string>",
    "issue_date": "<string>",
    "listing_level": 123,
    "type": "<string>",
    "type_name": "<string>",
    "group": "<string>",
    "group_name": "<string>",
    "emitter_id": 123,
    "is_for_qualified_investors": false,
    "has_morning_session": false,
    "has_evening_session": false,
    "has_weekend_session": false,
    "maturity_date": "<string>",
    "coupon_date": "<string>",
    "coupon_percent": 123,
    "coupon_value": 123,
    "coupon_frequency": 123,
    "days_to_redemption": 123,
    "initial_face_value": 123,
    "bond_type": "<string>",
    "bond_subtype": "<string>",
    "has_default": false,
    "has_technical_default": false,
    "has_prospectus": false,
    "boards": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
security
string
required

Security identifier — ticker (SECID) or ISIN code

Minimum string length: 1
Examples:

"SBER"

"GAZP"

"RU0009029540"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
language
enum<string>
default:ru

Language for localized text fields

Available options:
ru,
en

Response

Successful Response

secid
string
required
@type
string
default:@moex_security
short_name
string | null
name
string | null
latin_name
string | null
issue_name
string | null
isin
string | null
regnumber
string | null
issue_size
integer | null
face_value
number | null
face_unit
string | null
issue_date
string | null
listing_level
integer | null
type
string | null
type_name
string | null
group
string | null
group_name
string | null
emitter_id
integer | null
is_for_qualified_investors
boolean
default:false
has_morning_session
boolean
default:false
has_evening_session
boolean
default:false
has_weekend_session
boolean
default:false
maturity_date
string | null
coupon_date
string | null
coupon_percent
number | null
coupon_value
number | null
coupon_frequency
integer | null
days_to_redemption
integer | null
initial_face_value
number | null
bond_type
string | null
bond_subtype
string | null
has_default
boolean
default:false
has_technical_default
boolean
default:false
has_prospectus
boolean
default:false
boards
MoexSecurityBoard · object[]