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

Cancel all jobs in a batch processing operation.

NameTypeRequiredDescription
AuthorizationstringYesBearer token authentication

Path Parameters

ParameterTypeRequiredDescription
batch_idstringYesBatch identifier

Response

Status: 200 OK

FieldTypeDescription
successbooleanAlways true for successful requests
messagestringSuccess message
batch_idstringCancelled batch identifier
Bash
curl -X DELETE https://api.aitronos.com/api/v1/scrape/batch/batch_xyz789 \
  -H "X-API-Key: $FREDDY_API_KEY"

Response 200 OK

{
  "success": true,
  "message": "Batch cancelled successfully",
  "batch_id": "batch_xyz789"
}