5,000+ apps supported

Connect AI agents to your existing tools

Trigger agents from Zapier, Make, n8n, or your own code. Get results delivered back to where your team works.

⚡

Zapier

Most popular

Connect AGENTS.DEV to 5,000+ apps. Trigger agents from Gmail, Sheets, CRM, Slack, and more.

How to set up:

1.Create a Zap in Zapier
2.Set trigger (e.g. "New row in Google Sheets")
3.Add action: "Webhooks by Zapier → POST"
4.URL: https://matadora.business/api/v1/tasks
5.Body: { "agent_slug": "your-agent", "goal": "{{your_data}}" }
6.Add header: Authorization: Bearer gn_live_YOUR_KEY
đź”®

Make (Integromat)

Visual builder

Build visual workflows with AGENTS.DEV as an HTTP module. 1,500+ integrations available.

How to set up:

1.Create a new Scenario in Make
2.Add an HTTP module → Make a request
3.Method: POST, URL: /api/v1/tasks
4.Body: JSON { "agent_slug": "...", "goal": "..." }
5.Set Authorization header with your API key
6.Connect to any trigger (webhook, schedule, etc.)
🔄

n8n

Self-hosted

Open-source workflow automation. Run on your own server and keep full data control.

How to set up:

1.Add an HTTP Request node in n8n
2.Set Method: POST
3.URL: https://matadora.business/api/v1/tasks
4.Add header: Authorization: Bearer YOUR_API_KEY
5.JSON Body: { "agent_slug": "...", "goal": "..." }
6.Connect to any trigger node (Webhook, Schedule, etc.)
đź”—

Webhooks (custom)

Developer

Receive task completion events in your own app. Perfect for developers building on top of AGENTS.DEV.

How to set up:

1.Go to API Keys → Webhooks
2.Register your HTTPS endpoint URL
3.Choose events: task.completed, task.failed
4.Receive JSON payload with task result at your URL
5.Verify signature using HMAC-SHA256
6.Build your own logic on top of results

REST API — deploy agents programmatically

curl
curl -X POST https://matadora.business/api/v1/tasks \
  -H "Authorization: Bearer gn_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agent_slug": "web-researcher",
    "goal": "Find the top 5 SaaS tools for project management in 2025"
  }'
js
const res = await fetch("https://matadora.business/api/v1/tasks", {
  method: "POST",
  headers: {
    "Authorization": "Bearer gn_live_YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    agent_slug: "web-researcher",
    goal: "Find the top 5 SaaS tools for project management in 2025",
  }),
});
const { task } = await res.json();
console.log("Task started:", task.id);
python
import requests

response = requests.post(
    "https://matadora.business/api/v1/tasks",
    headers={
        "Authorization": "Bearer gn_live_YOUR_API_KEY",
        "Content-Type": "application/json",
    },
    json={
        "agent_slug": "web-researcher",
        "goal": "Find the top 5 SaaS tools for project management in 2025",
    },
)
task = response.json()["task"]
print(f"Task started: {task['id']}")

Ready to integrate?

Get your API key in the dashboard. Pro and Agency plans get full API access.