Using the API
Scrape Endpoints
Map Endpoints
Search Endpoints
Extract Endpoints
Account Endpoints
Crawl Endpoints
Get Crawl Status
GET
https://api.firecrawl.dev/v1
/
crawl
/
{id}
curl --request GET \
--url https://api.firecrawl.dev/v1/crawl/{id} \
--header 'Authorization: Bearer <token>'
{
"status": "<string>",
"total": 123,
"completed": 123,
"creditsUsed": 123,
"expiresAt": "2023-11-07T05:31:56Z",
"next": "<string>",
"data": [
{
"markdown": "<string>",
"html": "<string>",
"rawHtml": "<string>",
"links": [
"<string>"
],
"screenshot": "<string>",
"metadata": {
"title": "<string>",
"description": "<string>",
"language": "<string>",
"sourceURL": "<string>",
"<any other metadata> ": "<string>",
"statusCode": 123,
"error": "<string>"
}
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the crawl job
Response
200
application/json
Successful response
The response is of type object
.
curl --request GET \
--url https://api.firecrawl.dev/v1/crawl/{id} \
--header 'Authorization: Bearer <token>'
{
"status": "<string>",
"total": 123,
"completed": 123,
"creditsUsed": 123,
"expiresAt": "2023-11-07T05:31:56Z",
"next": "<string>",
"data": [
{
"markdown": "<string>",
"html": "<string>",
"rawHtml": "<string>",
"links": [
"<string>"
],
"screenshot": "<string>",
"metadata": {
"title": "<string>",
"description": "<string>",
"language": "<string>",
"sourceURL": "<string>",
"<any other metadata> ": "<string>",
"statusCode": 123,
"error": "<string>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.