Skip to main content
GET
Get Task Status

Authorizations

X-Browser-Use-API-Key
string
header
required

Path Parameters

task_id
string<uuid>
required

Response

Successful Response

Lightweight view optimized for polling. Use GET /tasks/{id}/status for efficient polling instead of GET /tasks/{id} which loads full step details.

id
string<uuid>
required

Unique identifier for the task

status
enum<string>
required

Current status of the task

Available options:
created,
started,
finished,
failed,
stopped
output
string | null

Final output/result of the task (null while running)

finishedAt
string<date-time> | null

Naive UTC timestamp when the task completed (null if still running)

isSuccess
boolean | null

Whether the task was successful based on the agent's self-reported output

cost
string | null

Total cost of the task in USD

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$