BROWSER USE

- Browser Use Agents: give Browser Use a task and receive completed work. API V4 is current for new integrations.
- Browser Infrastructure: connect your agent or automation to managed browsers through SDK, REST, or CDP. Starts at $0.02/browser-hour.
- Developer tools: Open Source, Browser Harness, SDK, and MCP support the two products above.

[Developer Index](https://browser-use.com/index.md)
[Product Map](https://browser-use.com/llms.txt)
[Full Product Context](https://browser-use.com/llms-full.txt)
[Pricing](https://browser-use.com/pricing.md)
[Cloud Docs](https://docs.browser-use.com/cloud/quickstart)
[Open Source Docs](https://docs.browser-use.com/open-source/introduction)

---

# OpenClaw + Browser Use

OpenClaw + Browser Use

# Give Your Agents  
Real Browsing Power

OpenClaw agents get stealth browsers, CAPTCHA solving, global proxies, and secure auth out of the box.

[Get Started](https://cloud.browser-use.com)[Read the Docs](https://docs.browser-use.com)

Profiles

## Anti-Detect Browser Profiles

Each agent session runs in an isolated browser profile with unique fingerprints — canvas, WebGL, timezone, fonts, and more. Your automations look like real users, not bots.

from browser\_use import Agent, Browser
from browser\_use.browser.profile import BrowserProfile

profile = BrowserProfile(
    fingerprint="randomized",
    timezone="America/New\_York",
    locale="en-US",
)

browser = Browser(profile=profile)
agent = Agent(browser=browser)

Captcha

## Built-In CAPTCHA Solving

reCAPTCHA, hCaptcha, Turnstile — handled automatically. Browser Use solves challenges in the background so your agents never get stuck on verification screens.

from browser\_use import Agent, Browser
from browser\_use.browser.config import BrowserConfig

config = BrowserConfig(
    captcha\_solving=True,
    # Supports reCAPTCHA v2/v3,
    # hCaptcha, Turnstile
)

browser = Browser(config=config)
agent = Agent(browser=browser)
await agent.run("Sign up on example.com")

Proxy

## 195+ Country Proxies

Route agent traffic through residential and mobile proxies in 195+ countries. Target any geography, avoid IP bans, and maintain high-reputation sessions across runs.

from browser\_use import Agent, Browser
from browser\_use.browser.config import BrowserConfig

config = BrowserConfig(
    proxy={
        "server": "geo.browser-use.com:3000",
        "country": "US",
        "type": "residential",
    }
)

browser = Browser(config=config)
agent = Agent(browser=browser)

Credentials

## Secure Credential Management

Agents can authenticate on websites without exposing passwords in plaintext. Credentials are injected securely at the browser level — never visible in agent logs or LLM context.

from browser\_use import Agent, Browser
from browser\_use.browser.config import BrowserConfig

config = BrowserConfig(
    credentials=\[{
        "domain": "app.example.com",
        "username": "agent@company.com",
        # Injected securely, never
        # exposed to the LLM
    }\]
)

browser = Browser(config=config)
agent = Agent(browser=browser)
await agent.run("Log into the dashboard")

Sessions

## Persistent Browser Sessions

Keep cookies, localStorage, and auth state across agent runs. Your OpenClaw agents can resume exactly where they left off — no re-login, no lost state.

from browser\_use import Agent, Browser
from browser\_use.browser.config import BrowserConfig

config = BrowserConfig(
    session\_id="openclaw-agent-01",
    persist\_state=True,
    # Cookies, localStorage, and
    # auth tokens survive restarts
)

browser = Browser(config=config)
agent = Agent(browser=browser)

Stealth

## Undetectable Automation

Browser Use patches every known bot detection vector — navigator flags, WebDriver properties, headless indicators, and behavioral analysis. Sites see a real human browser.

from browser\_use import Agent, Browser
from browser\_use.browser.config import BrowserConfig

config = BrowserConfig(
    stealth\_mode=True,
    # Patches: navigator.webdriver,
    # chrome.runtime, permissions,
    # plugins, languages, platform
)

browser = Browser(config=config)
agent = Agent(browser=browser)
await agent.run("Scrape competitor pricing")

Ecosystem

## What Startups Are Building

The OpenClaw ecosystem has exploded — 247K+ GitHub stars, 5,400+ community skills, and hundreds of startups building autonomous agents. Browser Use is the browsing infrastructure they rely on.

### Autonomous Sales

Agents that prospect, fill forms, and negotiate across dealer websites — saving thousands per deal.

### Content & SEO

Automated publishing, keyword research, and competitor monitoring at scale with stealth browsing.

### Data Pipelines

Extract structured data from any website, handle authentication, and feed it into your product.

### QA & Monitoring

Continuous testing and uptime monitoring using real browser sessions across geographies.

Integration

## Three Lines to Connect

openclaw-skill.py

from browser\_use import Agent, Browser
from browser\_use.browser.config import BrowserConfig

# Configure Browser Use with stealth + proxy
config = BrowserConfig(
    stealth\_mode=True,
    captcha\_solving=True,
    proxy={"country": "US", "type": "residential"},
)

# Create the agent
browser = Browser(config=config)
agent = Agent(
    task="Find the best flights to Tokyo next week",
    browser=browser,
)

# Run it
result = await agent.run()
print(result)

## Power up your OpenClaw agents.

Get started with Browser Use today — free tier available, no credit card required.

[Get Started](https://cloud.browser-use.com)
