Skip to main content
POST
/
api
/
cbr
/
currencies
/cbr/currencies
curl --request POST \
  --url https://api.anysite.io/api/cbr/currencies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@cbr_currency",
    "name": "<string>",
    "eng_name": "<string>",
    "nominal": 123,
    "parent_code": "<string>",
    "iso_num_code": "<string>",
    "iso_char_code": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Maximum number of currencies to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@cbr_currency
name
string | null
eng_name
string | null
nominal
integer | null
parent_code
string | null
iso_num_code
string | null
iso_char_code
string | null