Skip to main content
POST
/
api
/
moex
/
engines
/moex/engines
curl --request POST \
  --url https://api.anysite.io/api/moex/engines \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "timeout": 300,
  "engine": "stock"
}
'
[
  {
    "name": "<string>",
    "@type": "@moex_engine_ref",
    "id": 123,
    "title": "<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
engine
string | null

Engine name to list its markets. Omit to list all engines.

Example:

"stock"

Response

Successful Response

name
string
required
@type
string
default:@moex_engine_ref
id
integer | null
title
string | null