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

job_id string required

Job identifier.

ParameterTypeRequiredDescription
job_idstringYesJob identifier

Response

Status: 200 OK

FieldTypeDescription
messagestringSuccess message
job_idstringCancelled job identifier

Returns

Returns a JSON response indicating success or failure.

Bash
curl -X DELETE https://api.aitronos.com/v1/scrape/jobs/job_abc123def456 \
  -H "X-API-Key: $FREDDY_API_KEY"

Response 200 OK

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