Code Dashboard

The Code Dashboard runs your own Puppeteer scripts on axiom.ai's cloud. Use the Dashboard to create and manage scripts, run them from your own stack, and monitor every execution.

Quick start

To get a script running, create an account, then connect to axiom.ai using your API key. New accounts get 3 hours of free runtime.

  1. Create an account, log in, and copy your API key from the Dashboard.
  2. Add the code below to your script and paste in your API key.
  3. Open the endpoint URL in your browser to watch the run.
const browser = await puppeteer.connect({
  // Insert your API key in place of [HIDDEN_KEY]
  browserWSEndpoint: "wss://cdp-lb.axiom.ai/?token=[HIDDEN_KEY]"
});
const page = await browser.newPage();
await page.setViewport({ width: 1960, height: 1080 });

// Your script here

await page.close();
await browser.close();