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
A CloudBrowser API token (get yours at cloudbrowser.ai)
Basic knowledge of REST APIs or one of our supported libraries
Step 1: Get Your API Token
Sign up at cloudbrowser.ai
Navigate to your dashboard
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:
📚 Explore the API Documentation for advanced configurations
🔮 Try AI Functions to process web content with AI
📦 Use our client libraries for your preferred programming language
⚙️ Configure proxies and browser settings
Need Help?
Check our troubleshooting guide
Review best practices
Last updated