RESTful API with comprehensive endpoints for workflows, agents, executions, and integrations. Built for developers.
https://api.hyperautomate.ai/v1Generate API keys in your dashboard for server-to-server authentication.
Authorization: Bearer YOUR_API_KEYUse OAuth 2.0 for user-authenticated requests and third-party integrations.
Authorization: Bearer YOUR_OAUTH_TOKEN/workflowsList all workflows
/workflowsCreate a new workflow
/workflows/:idGet workflow details
/workflows/:idUpdate a workflow
/workflows/:idDelete a workflow
/workflows/:id/executeTrigger workflow execution
/agentsList all AI agents
/agentsCreate a new agent
/agents/:idGet agent details
/agents/:idUpdate an agent
/agents/:id/chatSend message to agent
/executionsList workflow executions
/executions/:idGet execution details
/executions/:id/retryRetry failed execution
/executions/:id/cancelCancel running execution
/integrationsList available integrations
/integrations/connectConnect to a service
/integrations/:idGet integration status
/integrations/:idDisconnect integration
# Create a new workflow
curl -X POST https://api.hyperautomate.ai/v1/workflows \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Welcome Email Workflow",
"trigger": {
"type": "webhook",
"path": "/webhook/new-user"
},
"actions": [
{
"type": "send_email",
"template": "welcome",
"to": "{{trigger.email}}"
}
]
}'Our developer support team is here to help you build and scale your automations.