Launches a website navigation agent to execute the task on a cloud browser.
Using Webhooks & a Structured Output Schema
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
1 <= x <= 10050
Which agent to use for the browsing task.
navigator-n1-preview-2025-11, claude-sonnet-4-5-computer-use-2025-01-24, yutori_navigator, anthropic_computer_use "navigator-n1-preview-2025-11"
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.
Optional task specification including input and/or output JSON schemas
{
"output_schema": {
"json_schema": {
"properties": {
"employees": {
"items": {
"properties": {
"name": {
"description": "Full name of the employee",
"type": "string"
},
"title": {
"description": "Job title of the employee",
"type": "string"
}
},
"required": ["name", "title"],
"type": "object"
},
"type": "array"
}
},
"required": ["employees"],
"type": "object"
},
"type": "json"
}
}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.