Skip to content
APISeeker
GET/v1/invoice/jobs/{jobId}

Extraction job status

Poll async OCR job status by id.

Part of Invoice OCR API· Rate limits: Plan-based

Parameters

NameInTypeRequiredDescription
jobIdpathstringYesJob id from extract response
X-API-KeyheaderstringYesYour API Seeker key

Code examples

cURL
curl -s "https://invocr.apiseeker.com/v1/invoice/jobs/{jobId}" \
  -H "X-API-Key: YOUR_API_KEY"

Response

JSON
{
  "jobId": "job_01",
  "status": "completed",
  "result": {
    "vendor": "Example Supplies",
    "total": 11800
  }
}

Errors

  • 401Missing or invalid API key
  • 404Job not found

Try this endpoint

API Playground

Invoice OCR API

Try it
GETinvocr.apiseeker.com
https://invocr.apiseeker.com/v1/invoice/jobs/value
Status: Latency:

Response headers

Send a request to see headers.

Response body

Response will appear here.

Generated snippets

cURL
curl -s "https://invocr.apiseeker.com/v1/invoice/jobs/{jobId}" \
  -H "X-API-Key: YOUR_API_KEY"