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

/crawl/{id}

Firecrawl API

Get the status of a crawl 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
→ 173 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/crawl/id' \  -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 crawl job

Response 200 OK

{
  "status": "string",
  "total": 0,
  "completed": 0,
  "creditsUsed": 0,
  "expiresAt": "2026-09-03T00:00:00Z",
  "createdAt": "2026-09-03T00:00:00Z",
  "completedAt": "2026-09-03T00:00:00Z",
  "duration": 0,
  "next": "string",
  "data": [
    {
      "markdown": "string",
      "html": "string",
      "rawHtml": "string",
      "rawBase64": "string",
      "links": [
        "string"
      ],
      "screenshot": "string",
      "metadata": {
        "title": "string",
        "description": "string",
        "language": "string",
        "sourceURL": "https://example.com",
        "<any other metadata> ": "string",
        "statusCode": 0,
        "timezone": "string",
        "error": "string"
      }
    }
  ]
}