Browser API
Operate a page through explicit, inspectable actions.
Click, fill, wait and scroll inside a managed browser session while preserving request IDs, usage and typed failures.
Browser actions require an account and are not exposed through the anonymous playground.Explicit actionsReview every click, fill, wait and scroll.
Reusable sessionsContinue authorized workflows within a bounded TTL.
Observable executionTrace status, duration, browser usage and errors.
Browser work without browser plumbing
Keep automation declarative and product-facing.
The Browse endpoint accepts a bounded action list and requested outputs. It does not promise CAPTCHA solving, paywall bypass or unrestricted access to private systems.
- Authorized form and dashboard workflows
- Pages that require interaction before extraction
- Repeatable browser checks with screenshots
POST /v1/browse
{
"url": "https://example.com",
"actions": [{ "action": "click", "selector": "#details" }],
"formats": ["markdown", "screenshot"]
}
200 OK
x-request-id: 51d...Build the smallest workflow that proves the page state.
Follow the JavaScript rendering guide with a downloadable script and a controlled click-and-wait demo.
Use the connected console to compose actions, inspect the trace and copy the equivalent API request.