Skip to main content
POST
/
api
/
moex
/
indices
/
constituents
/moex/indices/constituents
curl --request POST \
  --url https://api.anysite.io/api/moex/indices/constituents \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "index": "<string>",
  "count": 2,
  "timeout": 300,
  "date": "2024-06-01"
}
'
[
  {
    "secid": "<string>",
    "@type": "@moex_index_constituent",
    "ticker": "<string>",
    "short_name": "<string>",
    "weight": 123,
    "trade_date": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
index
string
required

Index identifier (e.g. IMOEX)

Minimum string length: 1
Examples:

"IMOEX"

"RTSI"

count
integer
required

Number of constituents to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
date
string | null

Composition date (YYYY-MM-DD); defaults to the latest available

Example:

"2024-06-01"

Response

Successful Response

secid
string
required
@type
string
default:@moex_index_constituent
ticker
string | null
short_name
string | null
weight
number | null
trade_date
string | null