Chromium version
Cloudflare Browser Rendering currently uses Chromium version 124.0.6367.257.
Browser Rendering allows developers to programmatically control and interact with a headless browser instance and create automation flows for their applications and products. Once configured, the service provides access to a WebSocket endpoint that speaks the DevTools Protocol ↗. This protocol is what allows Cloudflare to instrument a Chromium instance running in the Cloudflare global network.
If you want to programmatically confirm the version in your environment, you can retrieve it using either Puppeteer or Playwright.
import puppeteer from "@cloudflare/puppeteer";
async fetch(request, env) { const browser = await puppeteer.launch(env.MYBROWSER); const version = await browser.version(); console.log("Chromium version:", version); await browser.close();})().catch(console.error);
const { chromium } = require("playwright");
(async () => { const browser = await chromium.launch(); const version = await browser.version(); console.log("Chromium version:", version); await browser.close();})().catch(console.error);
Example output
Chromium version: HeadlessChrome/123.0.6312.86
Was this helpful?
- Resources
- API
- New to Cloudflare?
- Products
- Sponsorships
- Open Source
- Support
- Help Center
- System Status
- Compliance
- GDPR
- Company
- cloudflare.com
- Our team
- Careers
- 2025 Cloudflare, Inc.
- Privacy Policy
- Terms of Use
- Report Security Issues
- Trademark