GET
/
api
/
v1
/
scheduled-tasks
curl --request GET \
  --url https://api.browser-use.com/api/v1/scheduled-tasks \
  --header 'Authorization: Bearer <token>'
{
  "tasks": [
    {
      "id": "<string>",
      "task": "<string>",
      "save_browser_data": true,
      "structured_output_json": "<string>",
      "llm_model": "gpt-4o",
      "use_adblock": true,
      "use_proxy": true,
      "highlight_elements": true,
      "schedule_type": "interval",
      "interval_minutes": 123,
      "cron_expression": "<string>",
      "start_at": "2023-11-07T05:31:56Z",
      "next_run_at": "2023-11-07T05:31:56Z",
      "end_at": "2023-11-07T05:31:56Z",
      "is_active": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total_pages": 123,
  "page": 123,
  "limit": 123,
  "total_count": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:10
Required range: x >= 1

Response

200
application/json

Successful Response

Response model for listing scheduled tasks.