DELETEhttps://api.aitronos.com/v1/scrape/jobs/{job_id}
Cancel a pending or processing job.
| Name | Type | Required | Description |
|---|---|---|---|
Authorization | string | Yes | Bearer token authentication |
| Parameter | Type | Required | Description |
|---|---|---|---|
job_id | string | Yes | Job identifier |
Status: 200 OK
| Field | Type | Description |
|---|---|---|
message | string | Success message |
job_id | string | Cancelled job identifier |
Bash
- Bash
- Python
- JavaScript
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"
}