# Browserbase

Developer-first headless browser platform with stealth, residential proxies & session recording

Browserbase is cloud headless browser infrastructure featuring built-in CAPTCHA solving, residential proxy rotation, and session video replays.

## Overview

- **Website**: https://browserbase.com
- **Docs**: https://docs.browserbase.com
- **License / Pricing**: Freemium
- **Directory Entry**: https://agentaccess.dk/enablers/browserbase

## About

Browserbase is engineered for enterprise AI web automations that cannot fail. It pairs with Playwright, Puppeteer, and Stagehand, managing browser fingerprinting, residential IPs, and session persistence in cloud sandbox fleets.

## Key Features

- Automatic CAPTCHA and anti-bot mitigation bypass
- Session live debugger and video recording replays
- Residential and datacenter proxy rotation
- Seamless Stagehand and Playwright integration

## Danish System Application Recipes

### Reliable Extraction on Heavily-Guarded Danish Portals
Run automated price and catalog scraping across Danish e-commerce and classifieds platforms without IP bans or bot blocks.

## Quickstart

```typescript
import { Browserbase } from '@browserbasehq/sdk'
import { chromium } from 'playwright'

const bb = new Browserbase({ apiKey: process.env.BROWSERBASE_API_KEY })
const session = await bb.sessions.create({ projectId: process.env.BROWSERBASE_PROJECT_ID })

const browser = await chromium.connectOverCDP(session.connectUrl)
const page = await browser.newPage()
await page.goto('https://www.dst.dk')
console.log(await page.title())
await browser.close()
```

---
Source: [AgentAccess Enablers](https://agentaccess.dk/enablers/browserbase)