Using the API
Map Endpoints
Extract Endpoints
Search Endpoints
Account Endpoints
Deep Research
GET
/
deep-research
/
{id}
curl --request GET \
--url https://api.firecrawl.dev/v1/deep-research/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"finalAnalysis": "<string>",
"json": {},
"activities": [
{
"type": "<string>",
"status": "<string>",
"message": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"depth": 123
}
],
"sources": [
{
"url": "<string>",
"title": "<string>",
"description": "<string>",
"favicon": "<string>"
}
],
"status": "processing",
"error": "<string>",
"expiresAt": "2023-11-07T05:31:56Z",
"currentDepth": 123,
"maxDepth": 123,
"totalUrls": 123
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the research job
Response
200
application/json
Successful response
Displayed when using JSON format
Available options:
processing
, completed
, failed
curl --request GET \
--url https://api.firecrawl.dev/v1/deep-research/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"finalAnalysis": "<string>",
"json": {},
"activities": [
{
"type": "<string>",
"status": "<string>",
"message": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"depth": 123
}
],
"sources": [
{
"url": "<string>",
"title": "<string>",
"description": "<string>",
"favicon": "<string>"
}
],
"status": "processing",
"error": "<string>",
"expiresAt": "2023-11-07T05:31:56Z",
"currentDepth": 123,
"maxDepth": 123,
"totalUrls": 123
}
}