Skip to content

Cloud Overview

rayobrowse Cloud is a managed browser service in early access. Instead of running Docker yourself, you connect to https://cloud.rayobrowse.com with an API key. No SDK required.

  1. Make an HTTP GET to the /connect endpoint with your API key:

    Terminal window
    curl "https://cloud.rayobrowse.com/connect?os=windows" \
    -H "x-api-key: YOUR_API_KEY"
  2. The response body is a direct CDP WebSocket URL to the browser

  3. Connect to that URL with Playwright, Puppeteer, Selenium, or any CDP client

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

After the initial /connect request, your CDP client connects to the returned browser endpoint.

Local ModeCloud Mode
SetupDocker on your machineAPI key only
ConnectionGET http://localhost:9222/connect?... returns a CDP URLGET https://cloud.rayobrowse.com/connect?... returns a CDP URL
ScalingLimited by your hardwareScales automatically
CostFree and unlimited self-hosted useEarly access managed service
MaintenanceYou manage Docker updatesManaged for you
Best forDevelopment, small-scale, full controlProduction, scaling, no infra management
  1. Get an API key by contacting [email protected]
  2. Follow the cloud quickstart for working code in under 2 minutes