Orchestrate API: Trigger a no-code automation with one HTTP request.

Start a saved automation by name and it runs on Chrome in our cloud. Pass input data, check status, pull run reports, cancel runs, query runtime used, all over REST.

Orchestrate API
1const api = (path) =>2  fetch(`https://lar.axiom.ai/api/v3/${path}`, {3    method: "POST",4    headers: { "Content-Type": "application/json" },5    body: JSON.stringify({6      key: process.env.AXIOM_API_KEY,7      name: "scrape-product-prices",8    }),9  }).then(r => r.json());10 11await api("trigger");12const { status, data } = await api("run-data");13console.log(status, data);
Trigger an automation with one POST.Read the Orchestrate API docs

Docs

Every layer, documented.

Quickstarts, worked examples, and full endpoint references for each layer. Start with the quickstart, generate a key, and build from there.

Start with the quickstart

Get an API key and try the Orchestrate API for free.

2 free hours of runtime. No card required.