Skip to main content
POST
/
api
/
moex
/
currencies
/
rates
/moex/currencies/rates
curl --request POST \
  --url https://api.anysite.io/api/moex/currencies/rates \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '{
  "timeout": 300
}'
[
  {
    "secid": "<string>",
    "@type": "@moex_currency_rate",
    "short_name": "<string>",
    "price": 123,
    "change": 123,
    "nominal": 123,
    "trade_date": "<string>",
    "trade_time": "<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

Response

Successful Response

secid
string
required
@type
string
default:@moex_currency_rate
short_name
string | null
price
number | null
change
number | null
nominal
number | null
trade_date
string | null
trade_time
string | null