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

# Process Multiple Statements

> Process multiple bank statements in a single API call. This endpoint allows you to submit up to 10 documents for processing at once.



## OpenAPI

````yaml POST /parse/statements/batch
openapi: 3.0.0
info:
  title: Invaro Document Processing API
  description: API for processing bank statements and invoices using OCR and AI
  version: 1.0.0
  contact:
    name: Invaro Support
    email: support@invaro.ai
    url: https://docs.invaro.ai
servers:
  - url: https://api.invaro.ai/api/v1
    description: Production API
security:
  - bearerAuth: []
paths:
  /parse/statements/batch:
    post:
      tags:
        - Statement Processing
      summary: Process Multiple Bank Statements
      description: >-
        Process multiple bank statements in a single batch (maximum 10
        documents)
      operationId: processStatementsBatch
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - files
              properties:
                files:
                  type: array
                  maxItems: 10
                  items:
                    type: object
                    required:
                      - document_id
                    properties:
                      document_id:
                        type: string
                        description: UUID of the document to process
                  example:
                    - document_id: uuid-of-document-1
                    - document_id: uuid-of-document-2
      responses:
        '200':
          description: Batch processing started successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      batch_id:
                        type: string
                        example: batch_123
                      status:
                        type: string
                        example: pending
                      job_ids:
                        type: array
                        items:
                          type: string
                        example:
                          - job_1
                          - job_2
                      created_at:
                        type: string
                        format: date-time
                        example: '2024-01-07T10:00:00Z'
                      updated_at:
                        type: string
                        format: date-time
                        example: '2024-01-07T10:00:00Z'
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````