> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /banki/reviews/search

> Get the latest customer reviews (Narodny Reyting) across all banks on Banki.ru

**Price:** 5 credits per 25 results



## OpenAPI

````yaml /openapi/finance-markets.json post /api/banki/reviews/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/banki/reviews/search:
    post:
      tags:
        - /banki
      summary: /banki/reviews/search
      description: >-
        Get the latest customer reviews (Narodny Reyting) across all banks on
        Banki.ru


        **Price:** 5 credits per 25 results
      operationId: __api_banki_reviews_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BankiReviewsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BankiBankReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BankiReviewsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        count:
          type: integer
          minimum: 1
        rating:
          $ref: '#/components/schemas/BankiReviewRating'
          default: any
        product:
          anyOf:
            - $ref: '#/components/schemas/BankiReviewProduct'
            - type: 'null'
      type: object
      required:
        - count
    BankiBankReview:
      properties:
        '@type':
          type: string
          default: BankiBankReview
        id:
          type: integer
        text:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: integer
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        comment_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_verified:
          type: boolean
          default: false
        is_resolved:
          anyOf:
            - type: boolean
            - type: 'null'
        has_documents:
          type: boolean
          default: false
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        agent_answer:
          anyOf:
            - type: string
            - type: 'null'
        company:
          anyOf:
            - $ref: '#/components/schemas/BankiReviewCompany'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BankiReviewRating:
      type: string
      enum:
        - any
        - no_rating
        - positive
        - negative
        - '1'
        - '2'
        - '3'
        - '4'
        - '5'
    BankiReviewProduct:
      type: string
      enum:
        - 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
    BankiReviewCompany:
      properties:
        '@type':
          type: string
          default: BankiReviewCompany
        id:
          type: integer
        alias:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - alias
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````