Ai Agents 3 min read

Browser Run Migrates to Edge Containers for 4x Concurrency

Cloudflare rebuilt its Browser Run platform on native edge containers, quadrupling concurrency limits and halving latency for automated web tasks.

Cloudflare has migrated its Browser Run platform onto Cloudflare Containers, fundamentally changing how headless browsers execute at the edge. The May 13, 2026 update moves automated web tasks off legacy shared infrastructure, quadrupling concurrency limits and halving latency for quick actions like screenshots and page crawls. If you build infrastructure to support evaluating and testing AI agents, this architectural shift removes a major bottleneck in rendering dynamic web content.

Architecture Shift to Dedicated Containers

Previously, Browser Run shared infrastructure with Cloudflare’s Browser Isolation (BISO) product. BISO was designed for long, continuous human sessions and prioritizing security. This created a mismatch for automated workloads, which generate short, spiky traffic patterns.

The legacy setup suffered from image bloat, slowing down startup and development times. It also lacked the dense geographic distribution required for low-latency programmatic execution.

By rebuilding on top of Cloudflare Containers, a primitive that reached General Availability in April 2026, Browser Run now leverages dedicated, short-lived Linux environments. These containers are distributed globally across Cloudflare’s network of more than 330 cities.

Performance and Capacity Gains

The migration replaces a sequential WebSocket execution model, where instructions were sent one at a time, with parallel command processing. This yields immediate infrastructure upgrades without requiring user-side code changes.

MetricPrevious LimitNew LimitChange
Concurrency30 browsers per account120 browsers per account4x Increase
Throughput30 browsers per minute60 browsers per minute2x Increase
Quick Action LatencyBaseline-50%50% Reduction

New Capabilities for the Agentic Web

The update introduces a /crawl endpoint designed for deep data extraction. This allows automated systems to follow links and parse entire websites without managing complex navigation logic.

Browser Run is now integrated directly into the Cloudflare Agents SDK. This provides native bindings for developers building real-time agents to fetch, execute, and interact with the web reliably.

Under the hood, the new container platform uses active CPU pricing. Developers are billed only for the cycles the CPU actually burns during execution, rather than the wall-clock duration of the container session. Containers are addressed by Workers via service bindings, allowing for direct lifecycle management via JavaScript or TypeScript.

Browser Run’s updated architecture is live for developers on the Workers Paid Plan at $5 per month. Existing implementations automatically inherit the performance benefits and increased scaling limits. If your web automation pipelines previously struggled with cold starts or session timeouts, review your concurrency configuration to take advantage of the new 120-instance limit.

Get Insanely Good at AI

Get Insanely Good at AI

The book for developers who want to understand how AI actually works. LLMs, prompt engineering, RAG, AI agents, and production systems.

Keep Reading