curl --request GET \
--url https://{base_url}/status/{job_id} \
--header 'X-API-Key: <api-key>'{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "COMPLETED",
"type": "PARSE",
"execution_time": 12500,
"delay_time": 3200,
"file": {
"id": "f9e8d7c6-b5a4-3210-fedc-ba0987654321",
"filename": "sample-document.pdf",
"type": "application/pdf",
"total_pages": 3,
"expires_at": "2026-02-20T10:30:00Z",
"deleted_at": null,
"preview_url": "https://api-vision.fintelite.ai/files/preview/f9e8d7c6-b5a4-3210-fedc-ba0987654321",
"preview_expires_at": "2026-01-20T12:00:00Z"
},
"output": {
"type": "json",
"annotations": {
"blocks": [
{
"type": "IMAGE",
"content": "Company logo image",
"bbox": [
0.05,
0.02,
0.15,
0.08
],
"page": 1,
"block_num": 1,
"confidence": "HIGH",
"confidence_val": 0.98,
"page_seq": 1
},
{
"type": "SECTION_HEADER",
"content": "Invoice",
"bbox": [
0.1,
0.1,
0.3,
0.15
],
"page": 1,
"block_num": 2,
"confidence": "HIGH",
"confidence_val": 0.95,
"page_seq": 1
},
{
"type": "TEXT",
"content": "Invoice number: INV-2024-001",
"bbox": [
0.1,
0.2,
0.4,
0.25
],
"page": 1,
"block_num": 3,
"confidence": "HIGH",
"confidence_val": 0.92,
"page_seq": 1
},
{
"type": "TABLE",
"content": "<table><thead><tr><th>Item</th><th>Quantity</th><th>Price</th></tr></thead><tbody><tr><td>Product A</td><td>2</td><td>$50.00</td></tr><tr><td>Product B</td><td>1</td><td>$30.00</td></tr></tbody></table>",
"bbox": [
0.1,
0.3,
0.9,
0.6
],
"page": 1,
"block_num": 4,
"confidence": "HIGH",
"confidence_val": 0.89,
"page_seq": 1
}
]
},
"markdown": [
"[Image: Company logo image]\n\n# Invoice\n\nInvoice number: INV-2024-001\n\n<table><thead><tr><th>Item</th><th>Quantity</th><th>Price</th></tr></thead><tbody><tr><td>Product A</td><td>2</td><td>$50.00</td></tr><tr><td>Product B</td><td>1</td><td>$30.00</td></tr></tbody></table>",
"Page 2 content"
],
"metadata": {
"page_mapping": [
{
"original": 1,
"processed": 1
},
{
"original": 2,
"processed": 2
}
],
"mode": "PRO"
}
}
}Retrieve the current status and results of a job
curl --request GET \
--url https://{base_url}/status/{job_id} \
--header 'X-API-Key: <api-key>'{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "COMPLETED",
"type": "PARSE",
"execution_time": 12500,
"delay_time": 3200,
"file": {
"id": "f9e8d7c6-b5a4-3210-fedc-ba0987654321",
"filename": "sample-document.pdf",
"type": "application/pdf",
"total_pages": 3,
"expires_at": "2026-02-20T10:30:00Z",
"deleted_at": null,
"preview_url": "https://api-vision.fintelite.ai/files/preview/f9e8d7c6-b5a4-3210-fedc-ba0987654321",
"preview_expires_at": "2026-01-20T12:00:00Z"
},
"output": {
"type": "json",
"annotations": {
"blocks": [
{
"type": "IMAGE",
"content": "Company logo image",
"bbox": [
0.05,
0.02,
0.15,
0.08
],
"page": 1,
"block_num": 1,
"confidence": "HIGH",
"confidence_val": 0.98,
"page_seq": 1
},
{
"type": "SECTION_HEADER",
"content": "Invoice",
"bbox": [
0.1,
0.1,
0.3,
0.15
],
"page": 1,
"block_num": 2,
"confidence": "HIGH",
"confidence_val": 0.95,
"page_seq": 1
},
{
"type": "TEXT",
"content": "Invoice number: INV-2024-001",
"bbox": [
0.1,
0.2,
0.4,
0.25
],
"page": 1,
"block_num": 3,
"confidence": "HIGH",
"confidence_val": 0.92,
"page_seq": 1
},
{
"type": "TABLE",
"content": "<table><thead><tr><th>Item</th><th>Quantity</th><th>Price</th></tr></thead><tbody><tr><td>Product A</td><td>2</td><td>$50.00</td></tr><tr><td>Product B</td><td>1</td><td>$30.00</td></tr></tbody></table>",
"bbox": [
0.1,
0.3,
0.9,
0.6
],
"page": 1,
"block_num": 4,
"confidence": "HIGH",
"confidence_val": 0.89,
"page_seq": 1
}
]
},
"markdown": [
"[Image: Company logo image]\n\n# Invoice\n\nInvoice number: INV-2024-001\n\n<table><thead><tr><th>Item</th><th>Quantity</th><th>Price</th></tr></thead><tbody><tr><td>Product A</td><td>2</td><td>$50.00</td></tr><tr><td>Product B</td><td>1</td><td>$30.00</td></tr></tbody></table>",
"Page 2 content"
],
"metadata": {
"page_mapping": [
{
"original": 1,
"processed": 1
},
{
"original": 2,
"processed": 2
}
],
"mode": "PRO"
}
}
}API key for authentication
Job identifier
Job status and results (response structure varies by job type)
PREDICT job status response with extraction results
Job identifier
Job type
PREDICT Current job status
IN_QUEUE, IN_PROGRESS, COMPLETED, FAILED, CANCELLED Processing time in milliseconds (0 if not started)
Queue wait time in milliseconds (creation to worker start)
Detailed file information
Show child attributes
Job configuration details (PREDICT jobs only)
Show child attributes
Output structure for PREDICT jobs
Show child attributes
Error details for failed jobs
Show child attributes
Was this page helpful?