Skip to content
Last updated
DELETEhttps://api.aitronos.com/v1/scrape/jobs/{job_id}

Cancel a pending or processing job.

NameTypeRequiredDescription
AuthorizationstringYesBearer token authentication

Path Parameters

ParameterTypeRequiredDescription
job_idstringYesJob identifier

Response

Status: 200 OK

FieldTypeDescription
messagestringSuccess message
job_idstringCancelled job identifier
Bash
curl -X DELETE https://api.aitronos.com/api/v1/scrape/jobs/job_abc123def456 \
  -H "X-API-Key: $FREDDY_API_KEY"

Response 200 OK

{
  "message": "Job cancelled successfully",
  "job_id": "job_abc123def456"
}