API Reference

Everything you need to integrate Artifically automations into your own products. Explore authenticated requests, webhook payloads, and streaming responses with copy-paste samples.

Getting started

Authenticate using a Bearer token generated from your dashboard. All requests must be made over HTTPS. Visit the Developers section in the dashboard to rotate keys, inspect logs, and configure webhooks.

curl https://api.artifically.ai/v1/automations \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Artifically-Org: <WORKSPACE_ID>"

List Automations

GET
/v1/automations

Retrieve every automation available to your workspace with pagination support.

Create Automation

POST
/v1/automations

Provision a new automation with configurable triggers, actions, and guardrails.

Run Automation

POST
/v1/automations/{id}/run

Execute an automation immediately while streaming intermediate events.

Get Run

GET
/v1/runs/{id}

Fetch telemetry for an automation run including token usage and outputs.