Skip to main content
POST
/
api
/
banki
/
ratings
/
search
/banki/ratings/search
curl --request POST \
  --url https://api.anysite.io/api/banki/ratings/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "metric": "net_assets",
  "period": "2026-05-01"
}
'
[
  {
    "place": 123,
    "bank_id": 123,
    "name": "<string>",
    "@type": "@banki_rating_entry",
    "licence": "<string>",
    "region": "<string>",
    "value": 123,
    "previous_value": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of banks to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
metric
enum<string>
default:net_assets

Financial indicator to rank banks by

Available options:
net_assets,
net_profit,
capital,
loan_portfolio,
overdue_debt,
retail_loans,
corporate_loans,
retail_deposits,
corporate_funds,
securities,
highly_liquid_assets
period
string | null

Reporting period as the first day of a month (YYYY-MM-01); defaults to the latest period

Example:

"2026-05-01"

Response

Successful Response

place
integer
required
bank_id
integer
required
name
string
required
@type
string
default:@banki_rating_entry
licence
string | null
region
string | null
value
integer | null
previous_value
integer | null