GET
/crawl/active
Firecrawl APIGet all active crawls for the authenticated team
- 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
→ 123 tokens · Vary: Accept
→ 123 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/active' \ -H "Authorization: Bearer $FIRECRAWL_API_KEY"Get a free Firecrawl API key → sponsored
Parameters
No parameters.
Response 200 OK
{
"success": true,
"crawls": [
{
"id": "00000000-0000-4000-8000-000000000000",
"teamId": "string",
"url": "https://example.com",
"options": {
"scrapeOptions": {
"formats": [
"markdown"
],
"onlyMainContent": true,
"includeTags": [
"[recursive or deeply nested schema]"
],
"excludeTags": [
"[recursive or deeply nested schema]"
],
"maxAge": 0,
"headers": {},
"waitFor": 0,
"mobile": false,
"skipTlsVerification": false,
"timeout": 30000,
"parsePDF": true,
"jsonOptions": {
"schema": "[recursive or deeply nested schema]",
"systemPrompt": "[recursive or deeply nested schema]",
"prompt": "[recursive or deeply nested schema]"
},
"actions": [
"[recursive or deeply nested schema]"
],
"location": {
"country": "[recursive or deeply nested schema]",
"languages": "[recursive or deeply nested schema]"
},
"removeBase64Images": true,
"blockAds": true,
"proxy": "basic",
"changeTrackingOptions": {
"modes": "[recursive or deeply nested schema]",
"schema": "[recursive or deeply nested schema]",
"prompt": "[recursive or deeply nested schema]",
"tag": "[recursive or deeply nested schema]"
},
"storeInCache": true
}
}
}
]
}