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

# Get bank statement summary

> Retrieve comprehensive summary of bank statement analysis results



## OpenAPI

````yaml /api-specs/anycheck.yaml get /bank-statements/{id}/summary
openapi: 3.0.3
info:
  title: AnyCheck API
  version: 1.0.0
  description: >
    # AnyCheck API Documentation


    The AnyCheck API (formerly KYB API) provides comprehensive business and
    identity verification services through a RESTful interface.


    ## Features

    - **Identity Verification**: KTP, NIK, and other identity document
    validation

    - **Business Documents**: BPKB, land certificates, and business registration
    verification

    - **Compliance**: PEP screening and fraud detection

    - **Bank Statement Analysis**: OCR extraction and financial analysis

    - **Template Management**: Create and manage verification templates

    - **Async Processing**: Queue-based verification with webhook notifications


    ## Authentication

    All endpoints (except `/ping` and `/health`) require authentication via the
    `X-API-Key` header.
  contact:
    name: API Support
    email: bd@fintelite.ai
  license:
    name: Proprietary
servers:
  - url: https://api.anycheck.ai
    description: Production server
security:
  - apiKey: []
tags:
  - name: Health
    description: Health check endpoints
  - name: Upload
    description: File upload operations
  - name: Authentication
    description: User authentication and registration
  - name: Groups
    description: Group resource management
  - name: Services
    description: Verification service operations
  - name: Folders
    description: Folder management for organizing verifications
  - name: Verifications
    description: Document verification operations
  - name: Templates
    description: Verification template management
  - name: Bank Statement Analysis
    description: Bank statement OCR extraction, review, and financial analytics
  - name: Drafts
    description: 'Draft verification management: save, edit, and submit verifications'
paths:
  /bank-statements/{id}/summary:
    get:
      tags:
        - Bank Statement Analysis
      summary: Get bank statement summary
      description: Retrieve comprehensive summary of bank statement analysis results
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Verification ID
        - name: account_number
          in: query
          schema:
            type: string
          description: Filter by account number (optional)
      responses:
        '200':
          description: Bank statement summary data
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: Verification ID
                  bank_statement_summary:
                    type: array
                    items:
                      $ref: '#/components/schemas/BSAAccountSummary'
        '400':
          description: Invalid verification ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error_code: INVALID_ID
                message: Invalid Verification ID
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '408':
          $ref: '#/components/responses/RequestTimeout'
components:
  schemas:
    BSAAccountSummary:
      type: object
      properties:
        account_number:
          type: string
          description: Account number
          example: '1234567890'
        bank_name:
          type: string
          description: Bank name
          example: Bank Mandiri
        files:
          type: array
          items:
            type: string
          description: List of analyzed file names
          example:
            - uploads/bank-statement.pdf
        owner_name:
          type: string
          description: Account owner name
          example: PT ABC Indonesia
        currency:
          type: string
          description: Account currency
          example: IDR
        periods:
          type: array
          items:
            type: string
          description: Period covered by the statement
          example:
            - 2021-12-01 to 2021-12-31
        credit_mutation_number:
          type: number
          description: Total credit mutations in original currency
          example: 1500000
        credit_mutation_base_currency:
          type: number
          description: Total credit mutations converted to base currency
          example: 1500000
        debit_mutation_number:
          type: number
          description: Total debit mutations in original currency
          example: 1200000
        debit_mutation_base_currency:
          type: number
          description: Total debit mutations converted to base currency
          example: 1200000
        credit_operational_number:
          type: number
          description: Total operational credit transactions
          example: 800000
        debit_operational_number:
          type: number
          description: Total operational debit transactions
          example: 700000
        credit_non_operational_number:
          type: number
          description: Total non-operational credit transactions
          example: 700000
        debit_non_operational_number:
          type: number
          description: Total non-operational debit transactions
          example: 500000
        total_debit:
          type: integer
          description: Number of debit transactions
          example: 45
        total_credit:
          type: integer
          description: Number of credit transactions
          example: 38
        net_movement:
          type: number
          description: Net movement (credits - debits) in base currency
          example: 300000
        beginning_balance_number:
          type: number
          description: Beginning balance
          example: 2000000
        ending_balance_number:
          type: number
          description: Ending balance
          example: 2300000
    ErrorResponse:
      type: object
      properties:
        error_code:
          type: string
          example: INVALID_REQUEST
          description: Error code identifying the type of error
        message:
          type: string
          example: Invalid request. Please check input data format and try again
          description: Human-readable error message
        errors:
          type: array
          description: Field-specific validation errors (optional)
          items:
            $ref: '#/components/schemas/FieldError'
    FieldError:
      type: object
      properties:
        field:
          type: string
          description: Name of the field with validation error
          example: service_id
        message:
          type: string
          description: Field-specific error message
          example: This field is required
      required:
        - field
        - message
  responses:
    Unauthorized:
      description: Unauthorized - Authentication required or invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          examples:
            invalid_api_key:
              summary: Invalid API key
              value:
                error_code: INVALID_API_KEY
                message: API key is invalid
            api_key_expired:
              summary: Expired API key
              value:
                error_code: API_KEY_EXPIRED
                message: API key is expired
            unauthorized:
              summary: Missing authentication
              value:
                error_code: UNAUTHORIZED
                message: You are not authorized to perform this action
    Forbidden:
      description: Forbidden - User lacks required permissions
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error_code: FORBIDDEN
            message: You are forbidden to perform this action
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error_code: NOT_FOUND
            message: Resource not found
    RequestTimeout:
      description: Request timeout
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error_code: REQUEST_TIMEOUT
            message: Request timed out. Please try again later
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for service-to-service authentication

````