GET
/
parse
/
invoices
/
{job_id}
curl --request GET \
  --url https://api.invaro.ai/api/v1/parse/invoices/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "job_123456789",
  "status": "completed",
  "file_id": "sample_invoice.pdf",
  "created_at": "2025-02-11T08:19:37Z",
  "updated_at": "2025-02-11T08:19:53Z",
  "result": {
    "bank_details": {
      "IFSC": "ABC0001234",
      "SWIFT_CODE": "ABCDINBB",
      "account_number": "123456789012",
      "bank_name": "XYZ Bank Ltd."
    },
    "buyer_details": {
      "GSTIN": "00AAAAA0000A1Z0",
      "name": "ABC Enterprises",
      "address": "123, Main Street, City, Country",
      "phone": "9876543210",
      "state_code": "XY"
    },
    "invoice_details": {
      "GR_date": "01/01/2025",
      "GR_number": "987654"
    },
    "tax_calculation": {
      "HSN": "12345678",
      "IGST_amount": "1000.00",
      "IGST_percentage": "10%",
      "reverse_charge_applicable": "Not applicable"
    },
    "total_calculation": {
      "IGST_at_10_percentage": "100.00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

ID of the processing job

Response

200
application/json
Job status retrieved successfully
job_id
string
Example:

"job_123456789"

status
enum<string>
Available options:
processing,
completed,
failed
Example:

"completed"

file_id
string
Example:

"sample_invoice.pdf"

created_at
string
Example:

"2025-02-11T08:19:37Z"

updated_at
string
Example:

"2025-02-11T08:19:53Z"

result
object