--- title: "Get Scheduled Task" api: "GET /api/v1/scheduled-task/{task_id}" description: "Returns detailed information about a specific scheduled task" --- Returns detailed information about a specific scheduled task, including its schedule configuration and current status. ## Path Parameters ID of the scheduled task to retrieve ## Response The unique identifier for the scheduled task Instructions for what the agent should do Whether to save browser cookies and data JSON schema for structured output LLM model to use Whether to use an adblocker Whether to use a proxy Whether to highlight elements on the page Type of schedule: "interval" or "cron" Minutes between runs Cron expression for scheduling When to start the schedule When the next run is scheduled When to end the schedule Whether the scheduled task is active When the scheduled task was created When the scheduled task was last updated ```python python import requests url = "https://api.browser-use.com/api/v1/scheduled-task/{task_id}" headers = {"Authorization": "Bearer "} response = requests.request("GET", url, headers=headers) print(response.text) ``` ```bash curl curl --request GET \ --url https://api.browser-use.com/api/v1/scheduled-task/{task_id} \ --header 'Authorization: Bearer ' ``` ```json 200 { "id": "scheduled_task_1234567890abcdef", "task": "Visit example.com and check if the site is up", "save_browser_data": false, "structured_output_json": null, "llm_model": "gpt-4o", "use_adblock": true, "use_proxy": true, "highlight_elements": true, "schedule_type": "interval", "interval_minutes": 60, "cron_expression": null, "start_at": "2023-01-01T00:00:00Z", "next_run_at": "2023-01-01T01:00:00Z", "end_at": "2023-12-31T23:59:59Z", "is_active": true, "created_at": "2023-01-01T00:00:00Z", "updated_at": "2023-01-01T00:00:00Z" } ```