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 popularConnect AGENTS.DEV to 5,000+ apps. Trigger agents from Gmail, Sheets, CRM, Slack, and more.
How to set up:
1.
Create a Zap in Zapier2.
Set trigger (e.g. "New row in Google Sheets")3.
Add action: "Webhooks by Zapier → POST"4.
URL: https://matadora.business/api/v1/tasks5.
Body: { "agent_slug": "your-agent", "goal": "{{your_data}}" }6.
Add header: Authorization: Bearer gn_live_YOUR_KEYđź”®
Make (Integromat)
Visual builderBuild visual workflows with AGENTS.DEV as an HTTP module. 1,500+ integrations available.
How to set up:
1.
Create a new Scenario in Make2.
Add an HTTP module → Make a request3.
Method: POST, URL: /api/v1/tasks4.
Body: JSON { "agent_slug": "...", "goal": "..." }5.
Set Authorization header with your API key6.
Connect to any trigger (webhook, schedule, etc.)🔄
n8n
Self-hostedOpen-source workflow automation. Run on your own server and keep full data control.
How to set up:
1.
Add an HTTP Request node in n8n2.
Set Method: POST3.
URL: https://matadora.business/api/v1/tasks4.
Add header: Authorization: Bearer YOUR_API_KEY5.
JSON Body: { "agent_slug": "...", "goal": "..." }6.
Connect to any trigger node (Webhook, Schedule, etc.)đź”—
Webhooks (custom)
DeveloperReceive 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 → Webhooks2.
Register your HTTPS endpoint URL3.
Choose events: task.completed, task.failed4.
Receive JSON payload with task result at your URL5.
Verify signature using HMAC-SHA2566.
Build your own logic on top of resultsREST 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.