Browser Automation API · /automate

Automate the web in a single API call.

Hand it a task in plain language and it navigates, clicks, fills forms, and completes multi-step flows on pages you don't control. The browser and the model both run on Tabstack. You just make the call.

Plain-language tasksJS-heavy pagesHuman-in-the-loop

agent.automate · streaming

task: “Find the cheapest nonstop one-way flight from SFO to JFK on Friday that doesn't leave during the morning rush or land during evening rush hour, then add it to the cart”
Opened flights.example.com
Set nonstop, one-way, SFO → JFK, Friday
Filtered out rush-hour departures and arrivals
Sorted the rest by price, picked the cheapest
Added it to the cart

Result

“Delta DL 1180 · $228 nonstop, departs 10:50a, lands 7:35p. The cheapest one that clears rush hour.”

Fully managed

One call, not a framework to run

The browser and the model both run on Tabstack, so there's no framework to install, no model to wire in, and no browser to host. You make one call instead of standing up a browser-automation stack.

Features

  • One /automate call runs the whole task
  • Streams task events as it works (SSE)
  • Returns the finished result, not raw page data
automate.ts
TypeScript
import Tabstack from '@tabstack/sdk'

const client = new Tabstack()

const stream = await client.agent.automate({
  task: 'Find the pricing for the Enterprise plan and return the monthly cost and what is included',
  url: 'https://example.com/pricing'
})

try {
  for await (const event of stream) {
    if (event.event === 'task:completed') { console.log(event.data.finalAnswer) }
    if (event.event === 'error') { console.error(event.data.error.message) }
    if (event.event === 'done') break
  }
} catch (err) { console.error(err) }

Screenshot agents send

an image

A full-page image on every action. Thousands of vision tokens.

Tabstack sends

the accessibility tree
button "Search"
textbox "Email address"
link "Pricing" /pricing
heading "Plans"
button "Add to cart"

Compact structured text. 60-80% fewer tokens.

Cost at scale

60-80% fewer tokens per action

Tabstack reads the accessibility tree instead of taking screenshots, so every action costs a fraction of what vision-based agents spend. In our benchmarks that is a 60-80% reduction: a real cost difference at scale, not a minor optimization.

Features

  • Accessibility-tree engine instead of screenshots
  • Powered by Pilo, open source you can self-host
  • Runs many tasks concurrently at scale

Reliability

Handles the hard pages, asks about the rest

It works on the JS-heavy, dynamic, and authenticated pages that brittle scripts choke on. When it hits something it doesn't have, like a login, it pauses to ask instead of guessing or failing. And guardrails keep it inside the actions you allow, so you stay in control of what it does.

Features

  • Works on JS-heavy, dynamic, and authenticated pages
  • Pauses for human input with interactive: true
  • Scopes what it can do with guardrails
interactive.ts
TypeScript
// Interactive mode: the agent pauses instead of guessing
const stream = await client.agent.automate({
  task: 'Log in and check my account balance',
  url: 'https://example.com/login',
  interactive: true
})

try {
  for await (const event of stream) {
    if (event.event === 'interactive:form_data:request') {
      const data = event.data as { requestId: string }
      if (!data.requestId) continue
      await client.agent.automateInput(data.requestId, {
        fields: [{ ref: 'username', value: 'user@example.com' },
                 { ref: 'password', value: process.env.PASSWORD! }]
      })
    }
    if (event.event === 'task:completed') { console.log(event.data.finalAnswer) }
    if (event.event === 'done') break
  }
} catch (err) { console.error(err) }

Who builds on this

Teams automating multi-step work on the web

Booking & scheduling

Complete real reservations and bookings end to end.

Form automation & RPA

Fill and submit forms across sites you do not control.

QA & monitoring

Run multi-step flows to verify pages keep working.

Agentic workflows

Multi-step jobs that act on the web, not just gather from it.

Mozilla-backed

Privacy, Transparency, and Control

When you build on /automate, the pages it visits and the data it handles stay yours. Tabstack is a Mozilla-backed platform, and nothing you send is sold or used to train models.

Documented and accountable.Mozilla-documented data practices and robots.txt compliance by default, with no model training on customer data.

Retained only as needed.Requests and the pages it visits are used to run your task and support you, then purged. Never sold, never used to train models.

Scoped and controlled.guardrails scope what the automation may do, and interactive mode keeps a human in the loop when it matters.

See exactly how we source and handle data in the documentation.

Mozilla Manifesto

Pricing & Plans

All prices in USD.

Free Trial

Every new account includes 10,000 free credits to explore the full platform.

Individual

$0/ month

Pay-as-you-go

  • $0.35 / 1k credits
  • Access to all API endpoints
  • Fast research mode
  • Standard rate limits

For tinkerers & hobbyists who want to simply connect their systems to the internet.

Get Started

Team

$99/ month

500,000 credits included

  • Everything in Individual, plus:
  • Fast + Balanced research modes
  • Increased rate limits
  • $0.30 / 1k credits overage

Low-latency, predictable cost automation so you can focus on your core product.

Get Started

Pro

$499/ month

3,000,000 credits included

  • Everything in Team, plus:
  • Highest rate limits
  • $0.25 / 1k credits overage

For teams deploying and managing production workloads efficiently at scale.

Get Started

Enterprise Plan

Need Custom Pricing?

Custom API quotas, dedicated support, and SLAs for high-volume teams.

Contact Sales

From the developers

I signed in with Google and had a working API key right away. Then I made my first call and got back exactly what I asked for in minutes.

Developer Experience Researcher

Tech Stackups

Start automating the web in minutes.

The browser and the model run on Tabstack. You just make the call. Free to start.