Endpoints

A single-page lookup of every axiom.ai API endpoint. For full request and response details, follow the link in the rightmost column.

REST endpoints


The base URL for all REST endpoints is https://lar.axiom.ai/api/v3. All requests are POST with a JSON body. Authentication is by API key in the key field of the body, see Authentication.

MethodPathRequired body fieldsOptionalReference
POST/triggerkey, namedataTrigger an automation
POST/list-automationskeyList automations
POST/run-reportskeycountList run reports
POST/run-datakey, nameCheck run status
POST/stoppid, pwStop a run
POST/remaining-runtimekeyCheck remaining runtime

CDP endpoint


For driving a cloud browser from your code, connect a Chrome DevTools Protocol client to the WebSocket endpoint below. The API key is passed as the token query parameter.

ProtocolEndpointReference
wsswss://cdp-lb.axiom.ai/?token=YOUR_API_KEYStart a session

Versioning


The API version is part of the path. The current version is v3. Older versions are deprecated and not maintained, always use v3 in new integrations.

When a future major version ships, both the new and old paths will be served in parallel for a transition period. Breaking changes within a version are avoided wherever possible.

Transport and headers


  • All requests use HTTPS, plain HTTP is not supported.
  • The Content-Type header must be application/json.
  • No other custom headers are required. Specifically, the API key does not go in an Authorization header, it goes in the JSON body.
  • All responses are JSON.