Skip to main content
GET
/
agent
/
{jobId}
Get the status of an agent job
curl --request GET \
  --url https://api.firecrawl.dev/v2/agent/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": "processing",
  "data": {},
  "error": "<string>",
  "expiresAt": "2023-11-07T05:31:56Z",
  "creditsUsed": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

jobId
string<uuid>
required

The ID of the agent job

Response

200 - application/json

Successful response

success
boolean
status
enum<string>
Available options:
processing,
completed,
failed
data
object

The extracted data (only present when status is completed)

error
string

Error message (only present when status is failed)

expiresAt
string<date-time>
creditsUsed
number