Launches a website navigation agent to execute the task on a cloud browser.
Receive structured output on a webhook when the task completes
output_schema to receive data in a specific JSON schema format, and optionally add webhook notifications.String describing the browsing task in natural language.
"Give me a list of all employees (names and titles) of Yutori."
URL to open before running the task
"https://yutori.com"
Maximum number of steps the agent can take
2 <= x <= 10050
Which agent to use for the browsing task. Defaults to navigator-n1-latest.
navigator-n1-latest, claude-sonnet-4-5-computer-use-2025-01-24, navigator-n1-preview-2025-11 "navigator-n1-latest"
Hint that this task is likely to involve authentication (e.g. logging in or entering passwords). When true, the system will prefer an auth-optimized browser provider when available.
JSON Schema for structured output. Takes precedence over task_spec if both provided.
{
"items": {
"properties": {
"name": {
"description": "Full name of the employee",
"type": "string"
},
"title": {
"description": "Job title of the employee",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}Deprecated but still supported. Use output_schema instead.
Optional webhook URL to receive the agent.run result for the calling user using webhook_format.
"https://example.com/webhook"
Webhook payload format to use when webhook_url is provided. Slack incoming webhook URLs require 'slack'.
scout, slack, zapier "scout"
Successful Response
Unique identifier for this browsing task
queued, running, succeeded, failed If an output schema was provided, the result formatted as JSON matching that schema
Echoes the webhook URL configured for this agent.run request, if provided.