跳转到主要内容
GET
/
batch
/
scrape
/
{id}
/
errors
获取批量抓取作业的错误信息
curl --request GET \
  --url https://api.firecrawl.dev/v1/batch/scrape/{id}/errors \
  --header 'Authorization: Bearer <token>'
{
  "errors": [
    {
      "id": "<string>",
      "timestamp": "<string>",
      "url": "<string>",
      "error": "<string>"
    }
  ],
  "robotsBlocked": [
    "<string>"
  ]
}
注意:新的 此 API 的 v2 版本 现已提供,具备改进的错误报告和调试功能。

授权

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 列表