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.
How it works
Section titled “How it works”-
Make an HTTP GET to the
/connectendpoint with your API key:Terminal window curl "https://cloud.rayobrowse.com/connect?os=windows" \-H "x-api-key: YOUR_API_KEY" -
The response body is a direct CDP WebSocket URL to the browser
-
Connect to that URL with Playwright, Puppeteer, Selenium, or any CDP client
-
When you disconnect, the browser is cleaned up automatically
After the initial /connect request, your CDP client connects to the returned browser endpoint.
When to use cloud vs local
Section titled “When to use cloud vs local”| Local Mode | Cloud Mode | |
|---|---|---|
| Setup | Docker on your machine | API key only |
| Connection | GET http://localhost:9222/connect?... returns a CDP URL | GET https://cloud.rayobrowse.com/connect?... returns a CDP URL |
| Scaling | Limited by your hardware | Scales automatically |
| Cost | Free and unlimited self-hosted use | Early access managed service |
| Maintenance | You manage Docker updates | Managed for you |
| Best for | Development, small-scale, full control | Production, scaling, no infra management |
Getting started
Section titled “Getting started”- Get an API key by contacting [email protected]
- Follow the cloud quickstart for working code in under 2 minutes