<BACK TO CHANGELOG

Stealth Browser Infrastructure

Bypass Cloudflare and anti-bot protection with our bare metal browser infrastructure

Features

  • Persistent profiles - Maintain cookies, local storage, and session data across browser instances
  • Proxy support - Route traffic through proxies to bypass geo-restrictions and bot detection
  • File handling - Download files directly through the API without manual intervention

Browser Sessions with SDK

Access raw browser instances via Chrome DevTools Protocol:

from browser_use_sdk import BrowserUse
 
client = BrowserUse(api_key="bu_...")
 
# Basic browser session
browser_session = client.browsers.create_browser_session(
    timeout=30  # minutes
)
 
# With profile (inherit login state)
profile_browser = client.browsers.create_browser_session(
    profile_id="profile_123",
    proxy_country_code="US",
    timeout=60
)
 
print(f"CDP URL: {browser_session.cdp_url}")
print(f"Watch live: {browser_session.live_url}")

For more technical details, read the blog at /posts/browser-infra.

├─

Recent Updates