DELETE
/
batch
/
scrape
/
{id}
curl --request DELETE \
  --url https://api.firecrawl.dev/v1/batch/scrape/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Batch scrape job successfully cancelled."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the batch scrape job

Response

200
application/json
Successful cancellation
success
boolean
Example:

true

message
string
Example:

"Batch scrape job successfully cancelled."