Skip to content

Cloud Mode Overview

rayobrowse cloud is a managed browser service at cloud.rayobrowse.com. Instead of running Docker yourself, you connect with an API key — no SDK required.

  1. Point any CDP client at the /connect endpoint with your API key:

    wss://cloud.rayobrowse.com/connect?token=YOUR_API_KEY&os=windows
  2. The cloud creates a browser and returns a direct CDP WebSocket URL

  3. You automate with Playwright, Puppeteer, Selenium, or any CDP client

  4. When you disconnect, the browser is cleaned up automatically

The cloud gateway is not in the data path — after the initial /connect request, your CDP traffic goes directly to the browser instance.

Local ModeCloud Mode
SetupDocker on your machineAPI key only
Connectionws://localhost:9222/connect?...wss://cloud.rayobrowse.com/connect?token=KEY&...
ScalingLimited by your hardwareScales automatically
CostFree (1 browser) or paid threadsUsage-based
MaintenanceYou manage Docker updatesManaged for you
Best forDevelopment, small-scale, full controlProduction, scaling, no infra management
  1. Get an API key — contact support@rayobyte.com or fill out the access form
  2. Follow the cloud quickstart — working code in under 2 minutes