Skip to content

Commit 89f73a6

Browse files
authored
[Browser Rendering] Removed API term (#22937)
* Removed API term * Update src/content/docs/browser-rendering/workers-binding-api/index.mdx * Update src/content/docs/browser-rendering/index.mdx
1 parent 70b7699 commit 89f73a6

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

src/content/docs/browser-rendering/get-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ sidebar:
77

88
Browser rendering can be used in two ways:
99

10-
- [Workers Binding API](/browser-rendering/workers-binding-api) for complex scripts.
10+
- [Workers Bindings](/browser-rendering/workers-binding-api) for complex scripts.
1111
- [REST API](/browser-rendering/rest-api/) for simple actions.

src/content/docs/browser-rendering/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ Browser Rendering enables developers to programmatically control and interact wi
3232
You can integrate Browser Rendering into your applications using one of the following methods:
3333

3434
- **[REST API](/browser-rendering/rest-api/)**: Ideal for simple, stateless tasks like capturing screenshots, generating PDFs, extracting HTML content, and more.
35-
- **[Workers Binding API](/browser-rendering/workers-binding-api/)**: Suitable for advanced browser automation within [Cloudflare Workers](/workers/). This method provides greater control, enabling more complex workflows and persistent sessions.
35+
- **[Workers Bindings](/browser-rendering/workers-binding-api/)**: Suitable for advanced browser automation within [Cloudflare Workers](/workers/). This method provides greater control, enabling more complex workflows and persistent sessions.
3636

37-
Choose the method that best fits your use case. For example, use the [REST API endpoints](/browser-rendering/rest-api/) for straightforward tasks from external applications and the [Workers Binding API](/browser-rendering/workers-binding-api/) for complex automation within the Cloudflare ecosystem.
37+
Choose the method that best fits your use case. For example, use the [REST API endpoints](/browser-rendering/rest-api/) for straightforward tasks from external applications and use [Workers Bindings](/browser-rendering/workers-binding-api/) for complex automation within the Cloudflare ecosystem.
3838

3939
## Use Cases
4040

src/content/docs/browser-rendering/platform/limits.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ To increase this limit, you’ll need to [upgrade to a Workers Paid plan](/worke
1818

1919
| Feature | Limit |
2020
| -------------------------------------- | --------------- |
21-
| Concurrent browsers per account (Workers Binding API only) | 3 per account |
22-
| New browser instances per minute (Workers Binding API only) | 3 per minute |
21+
| Concurrent browsers per account (Workers Bindings only) | 3 per account |
22+
| New browser instances per minute (Workers Bindings only) | 3 per minute |
2323
| Browser timeout | 60 seconds [^2] |
2424
| Total requests per min (REST API only) | 6 per minute |
2525

@@ -29,8 +29,8 @@ To increase this limit, you’ll need to [upgrade to a Workers Paid plan](/worke
2929

3030
| Feature | Limit |
3131
| -------------------------------------- | ------------------- |
32-
| Concurrent browsers per account (Workers Binding API only) | 10 per account [^1] |
33-
| New browser instances per minute (Workers Binding API only) | 10 per minute [^1] |
32+
| Concurrent browsers per account (Workers Bindings only) | 10 per account [^1] |
33+
| New browser instances per minute (Workers Bindings only) | 10 per minute [^1] |
3434
| Browser timeout | 60 seconds [^2][^1] |
3535
| Total requests per min (REST API only) | 60 per minute |
3636

src/content/docs/browser-rendering/rest-api/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { DirectoryListing } from "~/components";
1212

1313
<DirectoryListing />
1414

15-
Use the REST API when you need a fast, simple way to perform common browser tasks such as capturing screenshots, extracting HTML, or generating PDFs without writing complex scripts. If you require more advanced automation, custom workflows, or persistent browser sessions, the [Workers Binding API](/browser-rendering/workers-binding-api/) is the better choice.
15+
Use the REST API when you need a fast, simple way to perform common browser tasks such as capturing screenshots, extracting HTML, or generating PDFs without writing complex scripts. If you require more advanced automation, custom workflows, or persistent browser sessions, [Workers Bindings](/browser-rendering/workers-binding-api/) are the better choice.
1616

1717
## Before you begin
1818

@@ -22,6 +22,6 @@ Before you begin, make sure you [create a custom API Token](/fundamentals/api/ge
2222

2323
:::note[Note]
2424

25-
Currently, the Cloudflare dashboard displays usage metrics exclusively for the [Workers Binding API method](/browser-rendering/workers-binding-api/). Usage data for the REST API is not yet available in the dashboard. We are actively working on adding REST API usage metrics to the dashboard.
25+
Currently, the Cloudflare dashboard displays usage metrics exclusively for the [Workers Bindings method](/browser-rendering/workers-binding-api/). Usage data for the REST API is not yet available in the dashboard. We are actively working on adding REST API usage metrics to the dashboard.
2626

2727
:::
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
pcx_content_type: navigation
3-
title: Workers Binding API
3+
title: Workers Bindings
44
sidebar:
55
order: 2
66
---
77

88
import { DirectoryListing } from "~/components";
99

10-
The Workers Binding API allows you to execute advanced browser rendering scripts within Cloudflare Workers. It provides developers the flexibility to automate and control complex workflows and browser interactions. The following options are available for browser rendering tasks:
10+
Workers Bindings allow you to execute advanced browser rendering scripts within Cloudflare Workers. They provide developers the flexibility to automate and control complex workflows and browser interactions. The following options are available for browser rendering tasks:
1111

1212
<DirectoryListing />
1313

14-
Use the Workers Binding API when you need advanced browser automation, custom workflows, or complex interactions beyond basic rendering. For quick, one-off tasks like capturing screenshots or extracting HTML, the [REST API](/browser-rendering/rest-api/) is the simpler choice.
14+
Use Workers Bindings when you need advanced browser automation, custom workflows, or complex interactions beyond basic rendering. For quick, one-off tasks like capturing screenshots or extracting HTML, the [REST API](/browser-rendering/rest-api/) is the simpler choice.

0 commit comments

Comments
 (0)