Skip to main content

At a glance

Credentials

Set these per environment. See Connect an integration.
VariableRequiredDescription
BROWSERBASE_API_KEYYesBrowserbase API key (starts with bb_) Docs.

Setup

  1. Create a Browserbase account: Sign up at https://www.browserbase.com - the free plan includes browser hours for testing.
  2. Copy your API key and project ID: In the dashboard, open Settings to find your API key (bb_…) and your default project ID. Each key belongs to a project.
  3. Store the key: Add it to your .env file as BROWSERBASE_API_KEY=bb_… - requests authenticate with the X-BB-API-Key header.
  4. Verify access: Run the List Projects tool, then List Sessions. Create Session can omit projectId - it is inferred from the API key.
  • Sessions are billed by browser minutes - release sessions you are done with via the Release Session tool
  • Driving the browser (navigation, clicks) happens over the session’s CDP connectUrl with Playwright/Puppeteer/Stagehand, not through this REST API
  • keepAlive sessions are only available on paid plans
Provider API reference: https://docs.browserbase.com/reference/api/create-a-session

Tools

ToolAccessDescription
List SessionsReadList browser sessions, optionally filtered by status
Create SessionWriteCreate a new cloud browser session (consumes plan browser minutes)
Get SessionReadGet a session’s status, connection URL, and metadata
Release SessionWriteRequest release of a running session to stop billing for it
List ProjectsReadList the Browserbase projects available to the API key

Example prompts

  • List my Browserbase sessions that are currently RUNNING and release any I no longer need.
  • Create a new Browserbase session and give me its ID and connection details.