Quickstart

Get CloudBrowser up and running in less than 5 minutes! This guide will show you how to launch your first browser and start automating web tasks.

Prerequisites

Step 1: Get Your API Token

  1. Navigate to your dashboard

  2. Copy your API token - you'll need it for authentication

Step 2: Launch Your First Browser

Using cURL (HTTP API)

curl -X POST https://production.cloudbrowser.ai/api/v1/Browser/Open \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "headless": false,
    "keepOpen": 300
  }'

Using Node.js

Using C#/.NET

Step 3: Connect to Your Browser

The API response will include an address field with your browser's WebSocket endpoint. Use this endpoint to connect with:

  • Puppeteer (Node.js)

  • Playwright (Node.js, Python, C#)

  • Selenium (any language)

  • CDP (Chrome DevTools Protocol)

Example: Complete Web Automation

Next Steps

Now that you have your first browser running:

Need Help?

Last updated