-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Create 2025-04-07-br-free-ga-playwright.mdx #21407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 6 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ae6b3fa
Create 2025-04-07-br-free-ga-playwright.mdx
kathayl 3f5db95
Update 2025-04-07-br-free-ga-playwright.mdx
kathayl 6243343
Update 2025-04-07-br-free-ga-playwright.mdx
kathayl 16313b5
Update 2025-04-07-br-free-ga-playwright.mdx
kathayl 4c870e0
Update 2025-04-07-br-free-ga-playwright.mdx
kathayl f922ed0
Update 2025-04-07-br-free-ga-playwright.mdx
kathayl fec8be0
Update src/content/changelog/browser-rendering/2025-04-07-br-free-ga-…
kathayl 1e4e68e
Update src/content/changelog/browser-rendering/2025-04-07-br-free-ga-…
kathayl 32a3700
Update src/content/changelog/browser-rendering/2025-04-07-br-free-ga-…
kathayl cb5b7b2
Update 2025-04-07-br-free-ga-playwright.mdx
kathayl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
src/content/changelog/browser-rendering/2025-04-07-br-free-ga-playwright.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| --- | ||
| title: Browser Rendering REST API is Generally Available, with new endpoints and a free tier | ||
| description: Browser Rendering updates - free tier and REST API GA with new endpoints | ||
| products: | ||
| - browser-rendering | ||
| date: 2025-04-07T6:00:00Z | ||
| hidden: true | ||
| --- | ||
|
|
||
| Today, 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 experiment with your use cases. See [limits here](/browser-rendering/platform/limits/). | ||
|
|
||
| Additionally, our **[REST API](/browser-rendering/rest-api/) is now Generally Available** - and it’s better than ever! We’ve added three new endpoints to help automate more browser tasks: | ||
kathayl marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| - **Extract structured data** – Use `/json` to retrieve structured data from a webpage. | ||
| - **Retrieve links** – Use `/links` to pull all links from a webpage. | ||
| - **Convert to Markdown** – Use `/markdown` to convert webpage content into Markdown format. | ||
|
|
||
| For example, to fetch the Markdown representation of a webpage: | ||
|
|
||
| ```bash title="Markdown example" | ||
| curl -X 'POST' 'https://api.cloudflare.com/client/v4/accounts/<accountId>/browser-rendering/markdown' \ | ||
| -H 'Content-Type: application/json' \ | ||
| -H 'Authorization: Bearer <apiToken>' \ | ||
| -d '{ | ||
| "url": "https://example.com" | ||
| }' | ||
|
|
||
| ``` | ||
|
|
||
| For the full list of endpoints, check out our [REST API documentation](/browser-rendering/rest-api/). | ||
|
|
||
| In case you missed it last week, you can now also leverage [Playwright](/browser-rendering/platform/playwright/) 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. | ||
kathayl marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.