Documentation Index
Fetch the complete documentation index at: https://docs.parzo.dev/llms.txt
Use this file to discover all available pages before exploring further.
GET /v1/jobs/:id
Poll the status of an extraction job. Oncestatus is completed, the full extracted data is included in the response.
Request
Headers| Header | Required | Description |
|---|---|---|
X-API-Key | Yes | Your Parzo API key |
| Parameter | Description |
|---|---|
id | The job_id returned by POST /v1/extract/invoice |
Example request
Responses by status
pending / processing
pending / processing
completed
completed
failed
failed
Polling strategy
Poll every 3-5 seconds. Jobs typically complete in 5-30 seconds.Python
Validation flags
When Parzo detects potential issues in the extracted data, it adds flags tovalidation_flags:
| Code | Severity | Description |
|---|---|---|
ARITHMETIC_MISMATCH | error | subtotal + tax ≠ total |
INVALID_TOTAL | error | Total is zero or negative |
INVALID_IT_VAT_RATE | warning | VAT rate not standard for Italy |
INVALID_PIVA_CHECKSUM | warning | Italian VAT number fails checksum |
DATE_INCOHERENCE | warning | Issue date is after due date |
Validation flags do not block the extraction — you always receive the result. Use flags to decide whether to flag the document for manual review.