Web Task - Start
Start a Web Task. The task runs asynchronously; poll the result endpoint for status and output.
Authorizations
API Key used to authenticate your requests. How to create one.
Path Parameters
Your workspace ID. How to find it?
Body
Web Task input schema
Request body for POST /web-tasks/start. Stored verbatim in web_task.input.
Natural-language description of what to do.
"Scrape YC companies from batch S24"
URL the agent should start from.
"https://www.ycombinator.com/companies"
Free-form parameters substituted into the task at runtime.
{
"param1": "value1",
"param2": 42,
"param3": true
}Schema describing the expected output shape. Accepts JSON-Schema-shaped objects as well as Intuned's extended type vocabulary (e.g. { type: 'attachment' }).
Caller-provided key that ties this task to a persisted code and resources tree.
Anthropic model the agent should run with. Defaults to 'haiku' when omitted.
haiku, sonnet, opus "sonnet"
Proxy URL to use for all browser traffic in this task.
"http://my-proxy.com:8080"
Id of a captured web task auth (recorder-based session). When set, the agent's browser is pre-loaded with that session's storage state so the task runs authenticated.
"wta_123"
Optional sink configuration. When set, the web task result is delivered to a webhook or S3 bucket once the task completes. Returned partially obfuscated in the result API response.
- S3 Sink Configuration
- Webhook Sink Configuration