GET/v1/scrape/jobs/{job_id}/status
Get current status of a scraping job with minimal data.
Lightweight endpoint for checking job progress without retrieving full results.
job_id string required
Unique identifier of the scraping job.
Returns job status with progress information:
job_id- Job identifierstatus- Current status (pending, processing, completed, failed, cancelled)progress- Progress percentage (0.0-1.0)message- Error message if failedcreated_at- Job creation timestampestimated_completion- Estimated completion time
Request
- Bash
- JSON
curl https://api.aitronos.com/v1/scrape/jobs/job_abc123/status \
-H "X-API-Key: $FREDDY_API_KEY"