Appearance
Install
CloudBrowser AI exposes a REST API. You pair it with a Puppeteer-compatible client in your language of choice. There is no standalone CLI to install; you install the thin SDK wrapper and call the API with your token.
Node.js
bash
npm install cloudbrowserai puppeteer-corecloudbrowserai is the official Node.js client. puppeteer-core provides the browser control layer; it does not download a local Chromium because you connect to a remote endpoint.
.NET
bash
dotnet add package CloudBrowserAi
dotnet add package PuppeteerSharpPython (via Crawl4AI integration)
bash
pip install crawl4aiCloudBrowser AI exposes a Crawl4AI-compatible endpoint. Pass USE_MANAGED_BROWSER=true and your API token when using the Crawl4AI adapter.
API key setup
- Create an account at https://cloudbrowser.ai/ and start a free trial or subscribe.
- Open your dashboard at https://app.cloudbrowser.ai and copy your API token.
- Store it in an environment variable:
bash
export CLOUDBROWSER_API_TOKEN="your_token_here"Never hard-code the token in source files.
No template / boilerplate
CloudBrowser AI does not ship an official project scaffold. The official sample repos serve as the closest equivalent: