Skip to content

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-core

cloudbrowserai 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 PuppeteerSharp

Python (via Crawl4AI integration)

bash
pip install crawl4ai

CloudBrowser AI exposes a Crawl4AI-compatible endpoint. Pass USE_MANAGED_BROWSER=true and your API token when using the Crawl4AI adapter.

API key setup

  1. Create an account at https://cloudbrowser.ai/ and start a free trial or subscribe.
  2. Open your dashboard at https://app.cloudbrowser.ai and copy your API token.
  3. 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: