Using the API
Scrape Endpoints
Map Endpoints
Search Endpoints
Extract Endpoints
Account Endpoints
Crawl Endpoints
Get Active Crawls
GET
/
crawl
/
active
Copy
curl --request GET \
--url https://api.firecrawl.dev/v1/crawl/active \
--header 'Authorization: Bearer <token>'
Copy
{
"success": true,
"crawls": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"teamId": "<string>",
"url": "<string>",
"options": {
"scrapeOptions": {
"formats": [
"markdown"
],
"onlyMainContent": true,
"includeTags": [
"<string>"
],
"excludeTags": [
"<string>"
],
"maxAge": 0,
"headers": {},
"waitFor": 0,
"mobile": false,
"skipTlsVerification": false,
"timeout": 30000,
"parsePDF": true,
"jsonOptions": {
"schema": {},
"systemPrompt": "<string>",
"prompt": "<string>"
},
"actions": [
{
"type": "wait",
"milliseconds": 2,
"selector": "#my-element"
}
],
"location": {
"country": "US",
"languages": [
"en-US"
]
},
"removeBase64Images": true,
"blockAds": true,
"proxy": "basic",
"changeTrackingOptions": {
"modes": [
"git-diff"
],
"schema": {},
"prompt": "<string>",
"tag": null
},
"storeInCache": true
}
}
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Successful response
The response is of type object
.
Copy
curl --request GET \
--url https://api.firecrawl.dev/v1/crawl/active \
--header 'Authorization: Bearer <token>'
Copy
{
"success": true,
"crawls": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"teamId": "<string>",
"url": "<string>",
"options": {
"scrapeOptions": {
"formats": [
"markdown"
],
"onlyMainContent": true,
"includeTags": [
"<string>"
],
"excludeTags": [
"<string>"
],
"maxAge": 0,
"headers": {},
"waitFor": 0,
"mobile": false,
"skipTlsVerification": false,
"timeout": 30000,
"parsePDF": true,
"jsonOptions": {
"schema": {},
"systemPrompt": "<string>",
"prompt": "<string>"
},
"actions": [
{
"type": "wait",
"milliseconds": 2,
"selector": "#my-element"
}
],
"location": {
"country": "US",
"languages": [
"en-US"
]
},
"removeBase64Images": true,
"blockAds": true,
"proxy": "basic",
"changeTrackingOptions": {
"modes": [
"git-diff"
],
"schema": {},
"prompt": "<string>",
"tag": null
},
"storeInCache": true
}
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.