Run browser automation with SSE streaming
Execute a browser automation task with Server-Sent Events (SSE) streaming. Returns a real-time event stream with automation progress, browser streaming URL, and final results.
Authorizations
API key for authentication. Get your key from the API Keys page.
Body
Automation task parameters
Target website URL to automate
"https://example.com"
Natural language description of what to accomplish on the website
1"Find the pricing page and extract all plan details"
Browser profile for execution. LITE uses standard browser, STEALTH uses anti-detection browser.
lite, stealth "lite"
Name of the integration making this API call (e.g., "dify", "zapier", "n8n"). Used for analytics.
"dify"
Agent behavior configuration
Configure which data to capture during the run.
HTTPS URL to receive webhook notifications for run lifecycle events. Must use HTTPS.
Opt-in to vault credentials for this run. When true, enabled vault items are included. Defaults to false.
true
Opt-in to the default Browser Context Profile if Browser Context Profiles are enabled; legacy callers are silently ignored when the profiles feature is disabled. Returns 400 when enabled but no default profile is set.
true
Browser Context Profile ID to use when use_profile is true.
1"prof_abc123def4567890"
Scope vault credentials to specific credential URIs. Requires use_vault to be true. If omitted with use_vault: true, all enabled items are used.
11[
"cred:conn-abc:Work:item-123",
"cred:conn-def:Personal:item-456"
]Proxy configuration
Optional provider-supported structured-output schema subset for the run result. Unsupported fields are rejected before the request is accepted.
{
"type": "object",
"properties": {
"title": { "type": "string" },
"price": { "type": "number" }
},
"required": ["title", "price"]
}Response
Server-Sent Events stream. Stream sends STARTED, STREAMING_URL (optional), PROGRESS (intermediate events with purpose), COMPLETE events, plus periodic HEARTBEAT messages.