> ## 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 Invoice Processing Status

> This endpoint allows you to check the status of invoice processing jobs and retrieve the extracted data once processing is complete.



## OpenAPI

````yaml GET /parse/invoices/{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:
  /parse/invoices/{job_id}:
    get:
      tags:
        - Invoice Processing
      summary: Get Invoice Processing Status
      description: Check the status of an invoice processing job
      operationId: getInvoiceStatus
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
          description: ID of the processing job
      responses:
        '200':
          description: Job status retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  job_id:
                    type: string
                    example: job_123456789
                  status:
                    type: string
                    enum:
                      - processing
                      - completed
                      - failed
                    example: completed
                  file_id:
                    type: string
                    example: sample_invoice.pdf
                  created_at:
                    type: string
                    format: date-time
                    example: '2025-02-11T08:19:37Z'
                  updated_at:
                    type: string
                    format: date-time
                    example: '2025-02-11T08:19:53Z'
                  result:
                    type: object
                    properties:
                      bank_details:
                        type: object
                        properties:
                          IFSC:
                            type: string
                            example: ABC0001234
                          SWIFT_CODE:
                            type: string
                            example: ABCDINBB
                          account_number:
                            type: string
                            example: '123456789012'
                          bank_name:
                            type: string
                            example: XYZ Bank Ltd.
                      buyer_details:
                        type: object
                        properties:
                          GSTIN:
                            type: string
                            example: 00AAAAA0000A1Z0
                          name:
                            type: string
                            example: ABC Enterprises
                          address:
                            type: string
                            example: 123, Main Street, City, Country
                          phone:
                            type: string
                            example: '9876543210'
                          state_code:
                            type: string
                            example: XY
                      invoice_details:
                        type: object
                        properties:
                          GR_date:
                            type: string
                            example: 01/01/2025
                          GR_number:
                            type: string
                            example: '987654'
                      tax_calculation:
                        type: object
                        properties:
                          HSN:
                            type: string
                            example: '12345678'
                          IGST_amount:
                            type: string
                            example: '1000.00'
                          IGST_percentage:
                            type: string
                            example: 10%
                          reverse_charge_applicable:
                            type: string
                            example: Not applicable
                      total_calculation:
                        type: object
                        properties:
                          IGST_at_10_percentage:
                            type: string
                            example: '100.00'
        '400':
          description: Bad request - Invalid job ID or request format
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Invalid job ID provided
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````