> ## 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.

# Get Document Processing Status

> Checks processing status for any job type. Automatically routes to the appropriate status handler. Simplifies client integration by using a single endpoint.



## OpenAPI

````yaml GET /api/v1/parse/{job_id}
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:
  /api/v1/parse/{job_id}:
    get:
      tags:
        - General Processing
      summary: Get Document Processing Status
      description: >-
        Checks processing status for any job type. Automatically routes to the
        appropriate status handler. Simplifies client integration by using a
        single endpoint.
      operationId: getGeneralJobStatus
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
          description: >-
            ID of the processing job (obtained from POST /api/v1/parse or other
            processing endpoints)
      responses:
        '200':
          description: Job status retrieved
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      job_id:
                        type: string
                        example: job_1234567890
                      status:
                        type: string
                        enum:
                          - pending
                          - processing
                          - completed
                          - failed
                        example: completed
                      file_id:
                        type: string
                        example: 1234567890_document.pdf
                      created_at:
                        type: string
                        format: date-time
                        example: '2024-01-07T10:00:00Z'
                      updated_at:
                        type: string
                        format: date-time
                        example: '2024-01-07T10:05:00Z'
                      result:
                        type: object
                        description: >-
                          Parsed document data. Structure depends on the
                          original document type.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````