Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/browser-rendering/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Browser automation for [Cloudflare Workers](/workers/).

</Description>

<Plan type="workers-paid" />
<Plan type="workers-all" />

The Workers Browser Rendering API allows developers to programmatically control and interact with a headless browser instance and create automation flows for their applications and products. Once you configure the service, Workers Browser Rendering gives you access to a WebSocket endpoint that speaks the [DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/). DevTools is what allows Cloudflare to instrument a Chromium instance running in the Cloudflare global network.

Expand Down
29 changes: 15 additions & 14 deletions src/content/docs/browser-rendering/platform/limits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,25 @@ sidebar:

import { Render, Plan } from "~/components";

<Plan type="workers-paid" />
<Plan type="workers-all" />

## Workers Binding API
## Workers Free

| Feature | Limit |
| -------------------------------- | ------------------- |
| Concurrent browsers per account | 10 per account [^1] |
| New browser instances per minute | 10 per minute [^1] |
| Browser timeout | 60 seconds [^1][^2] |
| Feature | Limit |
| -------------------------------------- | ------------------- |
| Concurrent browsers per account | 3 per account |
| New browser instances per minute | 3 per minute |
| Browser timeout | 60 seconds [^2] |
| Total requests per min (REST API only) | 6 per minute |

## REST API
## Workers Paid

| Feature | Limit |
| -------------------------------- | ------------------- |
| Concurrent browsers per account | 10 per account [^1] |
| New browser instances per minute | 10 per minute [^1] |
| Browser timeout | 60 seconds [^1][^2] |
| Total requests per minute | 60 per minute [^1] |
| Feature | Limit |
| -------------------------------------- | ------------------- |
| Concurrent browsers per account | 10 per account [^1] |
| New browser instances per minute | 10 per minute [^1] |
| Browser timeout | 60 seconds [^1][^2] |
| Total requests per min (REST API only) | 60 per minute |

[^1]: Contact our team to request increases to this limit.

Expand Down
Loading