Skip to content

Commit 5109e9a

Browse files
kathaylelithrar
andauthored
Create 2025-04-07-br-free-ga-playwright.mdx (#21407)
* Create 2025-04-07-br-free-ga-playwright.mdx Browser Rendering - REST API GA, playwright, new endpoints, free tier * Update 2025-04-07-br-free-ga-playwright.mdx make hidden * Update 2025-04-07-br-free-ga-playwright.mdx removed reference to playwright since that's going live 4/4 now * Update 2025-04-07-br-free-ga-playwright.mdx readd playwright * Update 2025-04-07-br-free-ga-playwright.mdx update title * Update 2025-04-07-br-free-ga-playwright.mdx update title * Update src/content/changelog/browser-rendering/2025-04-07-br-free-ga-playwright.mdx Co-authored-by: Matt Silverlock <[email protected]> * Update src/content/changelog/browser-rendering/2025-04-07-br-free-ga-playwright.mdx Co-authored-by: Matt Silverlock <[email protected]> * Update src/content/changelog/browser-rendering/2025-04-07-br-free-ga-playwright.mdx Co-authored-by: Matt Silverlock <[email protected]> * Update 2025-04-07-br-free-ga-playwright.mdx add typescript sdk --------- Co-authored-by: Matt Silverlock <[email protected]>
1 parent 5e35d32 commit 5109e9a

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
title: Browser Rendering REST API is Generally Available, with new endpoints and a free tier
3+
description: Browser Rendering updates - free tier and REST API GA with new endpoints
4+
products:
5+
- browser-rendering
6+
date: 2025-04-07T6:00:00Z
7+
hidden: true
8+
---
9+
10+
We’re excited to announce Browser Rendering is now available on the [Workers Free plan](https://www.cloudflare.com/plans/developer-platform/), making it even easier to prototype and experiment with web search and headless browser use-cases when building applications on Workers.
11+
12+
The Browser Rendering **[REST API](/browser-rendering/rest-api/) is now Generally Available**, allowing you to control browser instances from outside of Workers applications. We've added three new endpoints to help automate more browser tasks:
13+
14+
- **Extract structured data** – Use `/json` to retrieve structured data from a webpage.
15+
- **Retrieve links** – Use `/links` to pull all links from a webpage.
16+
- **Convert to Markdown** – Use `/markdown` to convert webpage content into Markdown format.
17+
18+
For example, to fetch the Markdown representation of a webpage:
19+
20+
```bash title="Markdown example"
21+
curl -X 'POST' 'https://api.cloudflare.com/client/v4/accounts/<accountId>/browser-rendering/markdown' \
22+
-H 'Content-Type: application/json' \
23+
-H 'Authorization: Bearer <apiToken>' \
24+
-d '{
25+
"url": "https://example.com"
26+
}'
27+
28+
```
29+
30+
For the full list of endpoints, check out our [REST API documentation](/browser-rendering/rest-api/). You can also interact with Browser Rendering via the [Cloudflare TypeScript SDK](https://github.com/cloudflare/cloudflare-typescript).
31+
32+
We also recently landed support for [Playwright](/browser-rendering/platform/playwright/) in Browser Rendering for browser automation from Cloudflare [Workers](/workers/), in addition to [Puppeteer](/browser-rendering/platform/puppeteer/), giving you more flexibility to test across different browser environments.
33+
34+
Visit the [Browser Rendering docs](/browser-rendering/) to learn more about how to use headless browsers in your applications.

0 commit comments

Comments
 (0)