diff --git a/src/content/docs/browser-rendering/index.mdx b/src/content/docs/browser-rendering/index.mdx
index c452ae80f95bfd9..8ee833e35d845c6 100644
--- a/src/content/docs/browser-rendering/index.mdx
+++ b/src/content/docs/browser-rendering/index.mdx
@@ -19,21 +19,35 @@ import {
-Browser automation for [Cloudflare Workers](/workers/).
+Browser automation for [Cloudflare Workers](/workers/) and [quick browser actions](/browser-rendering/rest-api/).
-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.
+Browser Rendering enables developers to programmatically control and interact with headless browser instances running on Cloudflare’s global network. This facilitates tasks such as automating browser interactions, capturing screenshots, generating PDFs, and extracting data from web pages.
-Use Browser Rendering to:
+## Integration Methods
-- Take screenshots of pages.
-- Convert a page to a PDF.
-- Test web applications.
-- Gather page load performance metrics.
-- Crawl web pages for information retrieval.
+You can integrate Browser Rendering into your applications using one of the following methods:
+
+- **[REST API](/browser-rendering/rest-api/)**: Ideal for simple, stateless tasks like capturing screenshots, generating PDFs, extracting HTML content, and more.
+- **[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.
+
+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.
+
+## Use Cases
+
+Browser Rendering can be utilized for various purposes, including:
+
+- Fetch HTML content of a page.
+- Capture screenshot of a webpage.
+- Convert a webpage into a PDF document.
+- Take a webpage snapshot.
+- Scrape specified HTML elements from a webpage.
+- Retrieve data in a structured format.
+- Extract Markdown content from a webpage.
+- Gather all hyperlinks found on a webpage.
## Related products
@@ -49,6 +63,12 @@ A globally distributed coordination API with strongly consistent storage.
+
+
+Build and deploy AI-powered agents that can autonomously perform tasks.
+
+
+
## More resources