From ae39a152d8563540cc0f690aa873cc1085174941 Mon Sep 17 00:00:00 2001 From: Shrey Pandya Date: Sun, 1 Mar 2026 16:51:50 -0800 Subject: [PATCH] docs: fact-check Browserbase section against official docs - Fix CAPTCHA/stealth/proxy claims: these are Developer plan+ only, not available on free tier - Fix free tier limits: 1 browser hour, 15-min session duration (not "60 minutes of monthly usage") - Add link to pricing page for paid plan details - Simplify structure to match Browserless section format - Remove sub-headings to match Browserless section style Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/tools/browser.md | 30 +++++++++++------------------- 1 file changed, 11 insertions(+), 19 deletions(-) diff --git a/docs/tools/browser.md b/docs/tools/browser.md index e631b68855f..6f59659d78d 100644 --- a/docs/tools/browser.md +++ b/docs/tools/browser.md @@ -199,23 +199,12 @@ Notes: ## Browserbase (hosted remote CDP) [Browserbase](https://www.browserbase.com) is a cloud platform for running -headless browsers. It provides remote CDP endpoints with built-in CAPTCHA -solving, anti-bot stealth mode, and residential proxies. You can point an +headless browsers with remote CDP endpoints. Paid plans (Developer and above) +add CAPTCHA solving, stealth mode, and residential proxies. You can point an OpenClaw browser profile at Browserbase's connect endpoint and authenticate with your API key. -### Getting started - -1. **Sign up** at [browserbase.com/sign-up](https://www.browserbase.com/sign-up). - The free tier includes one concurrent browser session and 60 minutes of - monthly usage. -2. **Find your credentials** on the - [Overview dashboard](https://www.browserbase.com/overview) — copy your - **API Key** from the right-hand panel. - -### Profile setup - -Point a profile at Browserbase's connect endpoint with your API key: +Example: ```json5 { @@ -234,13 +223,16 @@ Point a profile at Browserbase's connect endpoint with your API key: } ``` -### Notes +Notes: +- [Sign up](https://www.browserbase.com/sign-up) and copy your **API Key** + from the [Overview dashboard](https://www.browserbase.com/overview). - Replace `` with your real Browserbase API key. -- The free tier allows one concurrent session and 60 minutes per month. Paid - plans offer higher concurrency and usage limits. -- Browserbase sessions include automatic CAPTCHA solving and anti-bot stealth - by default — no extra configuration needed. +- The free tier allows one concurrent session, 15-minute session duration, and + one browser hour per month. See [pricing](https://www.browserbase.com/pricing) + for paid plan limits. +- CAPTCHA solving, stealth mode, and proxies require the Developer plan + ($20/month) or above. - See the [Browserbase docs](https://docs.browserbase.com) for full API reference, SDK guides, and integration examples.