Skip to main content
POST
/
api
/
banki
/
banks
/
reviews
/banki/banks/reviews
curl --request POST \
  --url https://api.anysite.io/api/banki/banks/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "bank": "<string>",
  "count": 2,
  "timeout": 300,
  "rating": "any",
  "kind": "any"
}
'
[
  {
    "id": 123,
    "@type": "@banki_bank_review",
    "title": "<string>",
    "text": "<string>",
    "rating": 123,
    "author": "<string>",
    "comment_count": 123,
    "is_verified": false,
    "is_resolved": true,
    "has_documents": false,
    "created_at": "<string>",
    "agent_answer": "<string>",
    "company": {
      "id": 123,
      "alias": "<string>",
      "@type": "@banki_review_company",
      "name": "<string>",
      "image": "<string>",
      "region": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
bank
string
required

Bank alias ('alfabank') or numeric bank id ('325') or bank page URL

Minimum string length: 1
Examples:

"alfabank"

"325"

"sberbank"

count
integer
required

Number of reviews to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
rating
enum<string>
default:any

Filter reviews by rating

Available options:
any,
no_rating,
positive,
negative,
1,
2,
3,
4,
5
kind
enum<string>
default:any

Filter by review kind (with bank answer, resolved, or verified)

Available options:
any,
with_agent_answer,
with_resolution,
verified
product
enum<string> | null

Filter reviews by the banking product

Available options:
debit_card,
credit_card,
mortgage,
auto_loan,
consumer_loan,
restructuring,
deposit,
money_transfer,
currency_exchange,
remote_service,
other_personal,
mobile_app,
cash_settlement,
acquiring,
salary_project,
business_deposit,
business_loan,
bank_guarantee,
leasing,
business_remote_service,
business_mobile_app,
other_business

Response

Successful Response

id
integer
required
@type
string
default:@banki_bank_review
title
string | null
text
string | null
rating
integer | null
author
string | null
comment_count
integer | null
is_verified
boolean
default:false
is_resolved
boolean | null
has_documents
boolean
default:false
created_at
string | null
agent_answer
string | null
company
BankiReviewCompany · object