GET
/
api
/
v1
/
task
/
{task_id}
/
status
curl --request GET \
  --url https://api.browser-use.com/api/v1/task/{task_id}/status \
  --header 'Authorization: Bearer <token>'
"created"

Authorizations

Authorization
string
header
required

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

Path Parameters

task_id
string
required

Response

200
application/json
Successful Response

Enumeration of possible task states.

  • created: Task is initialized but not yet started
  • running: Task is currently executing
  • finished: Task has completed successfully
  • stopped: Task was manually stopped
  • paused: Task execution is temporarily paused
  • failed: Task encountered an error and could not complete
Available options:
created,
running,
finished,
stopped,
paused,
failed