apicheats.dev firecrawl/llms.txt Raw .md
GET

/batch/scrape/{id}/errors

Firecrawl API

Get the errors of a batch scrape job

Base URL
https://api.firecrawl.dev/v1
Auth
Authorization: Bearer <FIRECRAWL_API_KEY>
Last verified
2026-09-03 · upstream hash matched
Actions
Agents: curl -H "Accept: text/markdown" this URL
→ 176 tokens · Vary: Accept

Critical gotchas

The formats field controls the output shape and defaults to ["markdown"]. Omitting it does not return HTML — request ["markdown","html"] explicitly.

/crawl is asynchronous: it returns a job id, and results are collected by polling /crawl/{id} until status is completed.

cURL

curl -X GET 'https://api.firecrawl.dev/v1/batch/scrape/id/errors' \  -H "Authorization: Bearer $FIRECRAWL_API_KEY"
Get a free Firecrawl API key → sponsored

Parameters

Name In Type Required Description
id path string Yes The ID of the batch scrape job

Response 200 OK

{
  "errors": [
    {
      "id": "string",
      "timestamp": "string",
      "url": "string",
      "error": "string"
    }
  ],
  "robotsBlocked": [
    "string"
  ]
}