跳转到主要内容
GET
/
crawl
/
{id}
/
errors
获取抓取任务的错误详情
curl --request GET \
  --url https://api.firecrawl.dev/v2/crawl/{id}/errors \
  --header 'Authorization: Bearer <token>'
{
  "errors": [
    {
      "id": "<string>",
      "timestamp": "<string>",
      "url": "<string>",
      "error": "<string>"
    }
  ],
  "robotsBlocked": [
    "<string>"
  ]
}

授权

Authorization
string
header
必填

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

路径参数

id
string<uuid>
必填

爬取任务的 ID

响应

成功的响应

errors
object[]

出错的抓取任务和错误详情

robotsBlocked
string[]

尝试抓取但被 robots.txt 阻止的 URL 列表