Skip to main content
POST
/
api
/
moex
/
indices
/moex/indices
curl --request POST \
  --url https://api.anysite.io/api/moex/indices \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "timeout": 300,
  "index": "IMOEX",
  "count": 1,
  "language": "ru"
}
'
[
  {
    "indexid": "<string>",
    "@type": "@moex_index",
    "short_name": "<string>",
    "name": "<string>",
    "latin_name": "<string>",
    "type": "<string>",
    "group": "<string>",
    "currency": "<string>",
    "calc_mode": "<string>",
    "decimals": 123,
    "initial_value": 123,
    "issue_date": "<string>",
    "from_date": "<string>",
    "till_date": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

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

Index identifier (e.g. IMOEX). Omit to list all indices.

Example:

"IMOEX"

count
integer
default:1

Number of indices to return when listing

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

Language for localized text fields

Available options:
ru,
en

Response

Successful Response

indexid
string
required
@type
string
default:@moex_index
short_name
string | null
name
string | null
latin_name
string | null
type
string | null
group
string | null
currency
string | null
calc_mode
string | null
decimals
integer | null
initial_value
number | null
issue_date
string | null
from_date
string | null
till_date
string | null