BROWSER USE

Products:
- [Browser Harness](https://browser-harness.com)
- [Stealth Browsers](https://browser-use.com/stealth-browsers)
- [Browser Use Box](https://browser-use.com/bux)
- [Web Agents](https://browser-use.com/web-agents)
- [Custom Models](https://browser-use.com/custom-models)
- [Proxies](https://browser-use.com/proxies)

[Pricing](https://browser-use.com/pricing)
[Blog](https://browser-use.com/posts)
[Cloud Docs](https://docs.cloud.browser-use.com)
[Open Source Docs](https://docs.browser-use.com)

[GET STARTED](https://cloud.browser-use.com)
[GITHUB](https://github.com/browser-use/browser-use)

---

# Stealth Browser Infrastructure

**Author:** Gregor Zunic
**Date:** 2025-09-30
> Introducing: Stealth and native browser use infrastructure built directly into the library. Want to bypass Cloudflare, or any other anti-bot protection? It's never been easier 👀

---

We're excited to announce **Browser Use Cloud Infrastructure** - a native browser service built directly into the Browser Use library itself.

Our in-house browser infrastructure is built to bypass essentially anything. Whether you're dealing with anti-bot protections, CAPTCHAs, or restrictive environments, Browser Use Cloud handles it seamlessly. Your agents browse like real users—undetectable, unrestricted, and unstoppable.

## One API Key. That's It.

Getting started with cloud browsers used to mean juggling multiple services, configuring CDPs, and managing complex infrastructure. Not anymore.

With Browser Use Cloud, you simply need a `BROWSER_USE_API_KEY` and you're ready to run agents at scale:

```python
from browser_use import Agent, Browser, ChatOpenAI

# Use Browser-Use cloud browser service
browser = Browser(
    use_cloud=True,  # Automatically provisions a cloud browser
)

agent = Agent(
    task="Your task here",
    llm=ChatOpenAI(model='gpt-4.1-mini'),
    browser=browser,
)
```

That's it. The same simple code you'd use locally, now running on scalable cloud infrastructure.

## Get Started

1. Sign up at [cloud.browser-use.com](https://cloud.browser-use.com)
2. Get your API key
3. Set `BROWSER_USE_API_KEY` environment variable
4. Run your agents at scale

Full documentation available at [browser use docs](https://docs.cloud.browser-use.com/concepts/browser).

This is just the beginning of making browser automation accessible to everyone.

## What's Next

We're also working on making **agent deployment** much easier. If you're interested in deploying production agents or need help with your use case, reach out to us at [x.com/gregpr07](https://x.com/gregpr07) or follow us at [x.com/browser_use](https://x.com/browser_use).
