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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the research job

Response

200
application/json
Successful response
success
boolean
data
object