Skip to main content
POST
/
api
/
cbr
/
banks
/cbr/banks
curl --request POST \
  --url https://api.anysite.io/api/cbr/banks \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "bik": "044525225"
}
'
[
  {
    "id": "<string>",
    "@type": "@cbr_bank",
    "bik": "<string>",
    "short_name": "<string>",
    "registration_date": "<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 banks to return

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

Max scrapping execution timeout (in seconds)

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

Filter by exact 9-digit BIC code

Example:

"044525225"

Response

Successful Response

id
string
required
@type
string
default:@cbr_bank
bik
string | null
short_name
string | null
registration_date
string | null