跳转到主要内容
DELETE
/
crawl
/
{id}
取消抓取任务
curl --request DELETE \
  --url https://api.firecrawl.dev/v2/crawl/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "cancelled"
}

授权

Authorization
string
header
必填

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

路径参数

id
string<uuid>
必填

爬取任务的 ID

响应

已成功取消

status
enum<string>
可用选项:
cancelled
示例:

"cancelled"