Connect your agents to any tool

Every Automated Worx agent is one API call away. Drop it into Zapier, Make, n8n — or anything that can hit a URL — and let it run inside the workflows you already use.

1. Get an API key

Create a client API key in your dashboard, then keep it handy — you'll paste it into your tool.

Open API Keys →

2. The one endpoint you need

Every integration calls the same endpoint. Send the agent's ID and an input; get the agent's reply back.

MethodPOST
URLhttps://automatedworx.com/api/agent-execute.php
HeaderX-API-Key: YOUR_CLIENT_API_KEY
Body (JSON){ "agent_id": 12, "input": "..." }
Replythe agent's answer is in output
# request
curl -X POST https://automatedworx.com/api/agent-execute.php \
  -H "X-API-Key: YOUR_CLIENT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"agent_id": 12, "input": "Qualify this lead: Acme Corp, 500 staff"}'

# reply
{
  "success": true,
  "output": "Strong ICP fit — 500 staff matches...",
  "model": "claude-sonnet-5",
  "tokens_used": 320
}

3. Recipes for your tool

Zapier

Webhooks by Zapier

  1. Add an action → Webhooks by ZapierPOST.
  2. URL: the endpoint above.
  3. Payload Type: JSON.
  4. Data: agent_id = your ID, input = a field from the previous step.
  5. Headers: X-API-Key = your key.
  6. Use output in later steps (Slack, Gmail, Sheets…).
Make.com

HTTP module

  1. Add an HTTP → Make a request module.
  2. Method POST, URL = the endpoint above.
  3. Header: X-API-Key = your key.
  4. Body type Raw / JSON: {"agent_id":12,"input":"{{...}}"}.
  5. Map output downstream.
n8n

Import a ready workflow

  1. Download the workflow below.
  2. In n8n: Workflows → Import from File.
  3. Open the HTTP node, set your key + agent_id.
  4. The reply is in {{ $json.output }}.
⬇ Download n8n workflow

Also available

Tip: the response also includes model, tokens_used, and duration_ms, and usage counts against your plan just like the dashboard.