Skip to main content
POST
/
api
/
sravni
/
banks
/
search
/sravni/banks/search
curl --request POST \
  --url https://api.anysite.io/api/sravni/banks/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "Альфа"
}
'
[
  {
    "id": "<string>",
    "@type": "@sravni_organization",
    "alias": "<string>",
    "name": "<string>",
    "full_name": "<string>",
    "type": "<string>",
    "status": "<string>",
    "description": "<string>",
    "license": "<string>",
    "image": "<string>",
    "square_image": "<string>",
    "website": "<string>",
    "address": "<string>",
    "legal_address": "<string>",
    "phones": [],
    "emails": [],
    "ogrn": "<string>",
    "inn": "<string>",
    "kpp": "<string>",
    "bik": "<string>",
    "swift": "<string>",
    "cb_website": "<string>",
    "registration_date": "<string>",
    "rating_value": 123,
    "review_count": 123,
    "branch_count": 123,
    "ra_rating": "<string>",
    "is_partner": false,
    "services": []
  }
]

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
keyword
string | null

Filter banks by name

Example:

"Альфа"

Response

Successful Response

id
string
required
@type
string
default:@sravni_organization
alias
string | null
name
string | null
full_name
string | null
type
string | null
status
string | null
description
string | null
license
string | null
image
string | null
square_image
string | null
website
string | null
address
string | null
phones
string[]
emails
string[]
ogrn
string | null
inn
string | null
kpp
string | null
bik
string | null
swift
string | null
cb_website
string | null
registration_date
string | null
rating_value
number | null
review_count
integer | null
branch_count
integer | null
ra_rating
string | null
is_partner
boolean
default:false
services
SravniOrganizationService · object[]