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.
- Create an account, log in, and copy your API key from the Dashboard.
- Add the code below to your script and paste in your API key.
- 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();
Dashboard
Navigate the Code Dashboard, access Live editor and Monitoring runs, and check your remaining runtime.
Live editor
Test and experiment with scripts in the web app and watch them run in real time.
Create scripts
Write Puppeteer scripts locally and connect them to the axiom.ai hosted browser.
Run from code
Run scripts from your own development environment or test them in the Live editor.
Monitoring runs
See in-progress and completed runs, durations, and results in Run Reports.
Keys and API
Fetch your API key from the Dashboard and store it securely.