BROWSER USE DEVELOPER RESOURCES

- Hosted Agents (API V4): submit a task and receive the result from a managed browser agent.
- Browser Infrastructure: control managed remote browsers through SDK, REST, or CDP. Starts at $0.02/browser-hour.
- Open Source Library: build and run browser agents with the Python library.

[Developer Index](https://browser-use.com/index.md)
[Product Map](https://browser-use.com/llms.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)

---

# 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).
