Skip to content
Browserbase
    • Primitives
      • BrowsersReal browsers for your agent to use the web, without the headaches
      • Web Data APIsSearch and fetch APIs to efficiently retrieve web data
      • RuntimeScalable, sandboxed environments for agent deployments
      • IdentityAuthenticate your agent to navigate the web like a human
      • ModelsUse any model with a single API key
      • ObservabilityUnified debugging your agent across replays, logs, and prompts
    • Open Source
      • Browse CLIGive your agent browsing skills with a single command
      • StagehandThe most popular AI browser automation framework
      • DirectorA complete UI for building useful browser agents
      • All Use Cases
      • Browser Agent
      • Automated Testing
      • Workflow Automation
      • Web Data Extraction
    • Resources
      • Blog
      • Customers
      • Enterprise
      • Templates
  • Pricing
  • Docs
  • Log in
Log in
Sign up
Get a demo
Browserbase

Primitives

  • Browsers
  • Web APIs
  • Runtime
  • Identity
  • Model Gateway
  • Observability
  • Stagehand
  • MCP

Industries

  • AI
  • Healthcare
  • Supply Chain
  • GTM
  • Tax
  • Legal

Developers

  • Docs
  • Templates
  • APIs & SDKs
  • Changelog
  • Status
  • Github

Company

  • Careers
  • Customers
  • Partner with Us
  • Trust & Security

Community

TwitterLinkedinYoutubeInstagram
  • Privacy Policy
  • Terms of Service

Community

TwitterLinkedinYoutubeInstagram
  • Privacy Policy
  • Terms of Service

Primitives

Your agent is only as good as its context

The Search and Fetch APIs let agents see and gather context on the web before acting on it.

Get startedRead the docs

Web APIs built for agents, not humans.

Most agent tasks start with a question: where should I go, and what's there?

  • Search API

    Most search APIs are designed around how people browse. Agents don't browse. They navigate, extract, and act, and every unnecessary hop costs tokens, time, and reliability.

    Read the docs
  • Fetch API

    Most tools return what a page looks like in theory. The Fetch API returns what's actually there. Pass a URL, choose your format, and get back clean, structured content your agent can use immediately.

    Read the docs

Search, then Fetch, then Browse

An agent-optimized web experience.

Search returns ranked URLs with titles and descriptions so your agent lands in the right place on the first try.

Fetch and Fetch Extract allow you to pull content and convert to markdown or structured JSON from a provided url. Request a page, get content back.

Browse is the final step that lets you take actions on a page. Log in, fill out a form, download a file.

Integrated with our browser agent SDK: Stagehand

One API Key gives your agents access to the whole web.

Get started with Stagehand
  1. Typescript
import { Stagehand } from "@browserbasehq/stagehand";

const stagehand = new Stagehand({
  env: "BROWSERBASE"
})

await stagehand.init();

const agent = stagehand.agent({
  model: "anthropic/claude-sonnet-4-6",
});

const page = stagehand.context.pages()[0];
await page.goto("https://browserbase.com");

const result = await agent.execute({
  instruction: "Find the latest pricing for Browserbase",
  useSearch: true,
  maxSteps: 20,
});

Start building browser agents

Research Agents

Point an agent at a topic and get back ranked, readable content. No scraping, no brittle selectors.

Lead enrichment

Search for a company or contact, pull the right page, extract what you need. Structured, at scale.

Competitive monitoring

Search for what's changing in your space. Pair with a browser session to go deeper when it matters.

One API Key to access the whole web.

Build, ship and scale on Browserbase

Get an API keyContact Sales