GET
/api/v1/jobs/{jobId}Get job status
Read the current lifecycle state and result information for a processing job.
Authentication
API key
Scopes
jobs:read
Contract
API v1
Request
curl -X GET 'https://api.maxscanner.app/api/v1/jobs/{jobId}' \
-H 'Authorization: Bearer $MAXSCANNER_API_KEY' \
-H 'Content-Type: application/json'Request body
GET /api/v1/jobs/job_123Response
{ "jobId": "job_123", "status": "completed", "resultUrl": "/en/result/job_123" }Implementation notes
- Terminal states are completed, failed and dead_letter.
Try this endpoint
Use the API Playground to authenticate and test safely before wiring the endpoint into your application.
Open Playground →