The undetectable browser,
proven on the sites that block everyone else
Pick a real site below. Each result comes from field benchmark runs — same site, same network, repeated 3× — so what you see is what the engine does, not a demo page we control.
Data from our benchmark runs (same sites, same residential proxy, N=3 each). See full methodology →
The 216-site field scan
We crawled 216 production sites — including DataDome, PerimeterX, Akamai and Cloudflare Turnstile protected properties — with Browser Forest's patched engine.
Engine-level comparison
Success share is illustrative from our 4-site head-to-head (N=3); the pass/fail rows above are exact.
Try it in 3 lines
Python SDK — create a session, navigate, extract:
from browser_forest import BrowserForestClient
from playwright.async_api import async_playwright
client = BrowserForestClient(api_key="bf_live_xxx")
# 1. Create an undetectable cloud browser session
session = client.sessions.create(url="https://www.indeed.com/jobs?q=ai")
# 2. Connect over CDP with Playwright — full control, no shims
async with async_playwright() as p:
browser = await p.chromium.connect_over_cdp(session["cdpUrl"])
page = browser.contexts[0].pages[0]
print(await page.title()) # real job listings, not a challenge page
print(await page.content()) # extract everything
client.sessions.stop(session["id"])Methodology: field results from benchmark runs (same sites, same residential proxy, N=3) and a 216-site production crawl. No cherry-picked success — blocked runs are reported as blocked. Read the full comparison →