Reuse browsers for multiple automations, with our improved reconnect API

Run Puppeteer or Playwright, Without the Chrome Headaches

No more fixing font libraries, updating browser versions or restarting containers. Scale from tens to thousands of concurrencies using Puppeteer or Playwright, or with our REST APIs for common tasks.

a code block showing how to alter puppeteer code to connect to Browserless
Pink Light

Write the scripts
and we’ll do the rest

Our pool of hosted browsers are ready to use with Puppeteer, Playwright or via our REST APIs.

RAM, CPU and GPU are fully managed to stop browsers devouring resources.
Choose your browser version, without messing with packages or dependencies.
Avoid bot blockers with our /unblock API and residential proxy network.
Scaling and load balancing is handled for you to absorb any traffic surges.
Use the dashboard and live sessions to keep your browsers running smoothly.
Chrome’s zombie processes are cleared away to stop servers from clogging up.
Divider line

Run any Puppeteer or Playwright script, no matter the complexity

Unlike other browser automation tools with limited features, Browserless takes a browser-first approach, providing a robust headless deployment without requiring additional libraries or DevOps involvement.

Divider line

Perform any action, no matter how complex

Whether you need to click buttons, fill in forms, navigate tabs or anything else, Browserless will run the script.

Perform common tasks with a REST API

You don’t even have to use with a whole library, use our APIs for extracting HTML, generating PDFs, downloading files and more.

Hybrid automations for remote interactions

Stream pages to an iframe while running scripts, for tasks such as user log ins and 2FA code submissions.

Keep browsers alive with session reconnects

Switch back and forth between browsers by using reconnects to keep a process open.

Create persistent caches and cookies

Manage your cookies between sessions to help get past the bot detectors.

Use JavaScript browser rendering

Run scripts on any site, including single page applications using our javascript enabled headless browsers.

Use your existing scripts with a quick connection change

See the Docs
Browserless white logo icon svg

// From inside your Node application
import puppeteer from 'puppeteer';

// Replace puppeteer.launch with puppeteer.connect
const browser = await puppeteer.connect({
  browserWSEndpoint: 'wss://chrome.browserless.io'
});

// The rest of your script remains the same
const page = await browser.newPage();
await page.goto('https://example.com/');
await page.screenshot({ path: 'screenshot.png' });
page.close();

Browserless white logo icon svg

import { chromium } from 'playwright';

(async () => {
  const browser = await chromium.connect(
    'wss://chrome.browserless.io/playwright'
  );
  const page = await browser.newPage();
  await page.goto('https://www.example.com/');
  await page.screenshot({ path: 'example.png' });
  await browser.close();
})();

Browserless white logo icon svg

// Automatically responds with a PDF download

curl -X POST \
  https://chrome.browserless.io/pdf \
  -H 'Content-Type: application/json' \
  --output site.pdf \
  -d '{
  "url": "https://example.com/"
  }'

Monitor the health of your automations

Monitor the health of your automations

Deploy as code, monitor as a GUI.
Request metrics
See a graph and numbers for successes, errors, timeouts
and queue.
Worker health
Enterprise plans can see the CPU and memory of their workers.
Debugger
Use our debugger to watch your scripts run and catch errors.
If you have ever need help, you can then reach out to support who typically reply in under an hour.
See Our Tiers
Quote icon

Hear from our users

Firsthand testimonials and feedback directly from our valued users

"We were hosting our own Puppeteer-driven smoke testing service, which required specialized operational attention to maintain and scale. We began looking for third-party hosted solutions so that we could focus our attention on building and supporting our core products, and Browserless fit the bill."

Christopher Zhen
Software Engineer, Samsara

"Browserless helped us focus on the problem we were trying to solve, and less on scaling an automation infrastructure. Browserless's developer focused approach has been a key to us bringing our product to market at the speed we were able to do so. Joel and team are some of the most customer-centric partners I've worked with."

Scott Weinert
Co-Founder & CTO, Atomic

Ready to try the benefits of Browserless?