cURL
curl --request GET \ --url https://api.firecrawl.dev/v0/crawl/status/{jobId} \ --header 'Authorization: Bearer <token>'
{ "status": "<string>", "current": 123, "total": 123, "data": [ { "markdown": "<string>", "content": "<string>", "html": "<string>", "rawHtml": "<string>", "index": 123, "metadata": { "title": "<string>", "description": "<string>", "language": "<string>", "sourceURL": "<string>", "<any other metadata> ": "<string>", "pageStatusCode": 123, "pageError": "<string>" } } ], "partial_data": [ { "markdown": "<string>", "content": "<string>", "html": "<string>", "rawHtml": "<string>", "index": 123, "metadata": { "title": "<string>", "description": "<string>", "language": "<string>", "sourceURL": "<string>", "<any other metadata> ": "<string>", "pageStatusCode": 123, "pageError": "<string>" } } ] }
partial_data
data
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the crawl job
Successful response
The response is of type object.
object