Browser API
Run managed browsers without operating browser infrastructure
Launch browser sessions, execute JavaScript, capture screenshots and automate complex websites through an API built for scale.
Built for browser-heavy data collection
Browser API is designed for pages that need JavaScript execution, authenticated browser state, dynamic rendering, or automation through Playwright, Puppeteer, and CDP-compatible clients.
Chromium sessions
Secure WebSocket access
Country-level proxy selection
Session timeouts and cleanup
Usage and duration metering
Future profile persistence
CDP connection
Readyconst browser = await puppeteer.connect({
browserWSEndpoint:
"wss://browser.raspbytes.com/session/brs_123?token=..."
});
const page = await browser.newPage();
await page.goto("https://example.com");