Everything you can do in the portal, you can do through the API — build, train, evaluate, govern and deploy agents programmatically.
Authenticate with a bearer token, point an agent at a task, and get a governed, structured response. Every call runs the full pipeline — permissions, eval gate, compliance, audit.
Issue scoped keys per environment and role.
Typed JSON with trust score and audit reference on every call.
Subscribe to approvals, completions and policy blocks in real time.
# Dispatch a governed task to the Sales agent
curl https://api.operanix.ai/v1/agents/sales/tasks \
-H "Authorization: Bearer $OPERANIX_KEY" \
-H "Content-Type: application/json" \
-d '{
"task": "draft_outreach",
"lead_id": "ld_9f23",
"require_approval": true
}'
# → 202 Accepted
{
"task_id": "tsk_5c1a",
"status": "awaiting_approval",
"trust_score": 0.94,
"audit_ref": "aud_8b20"
}
Full coverage of the agent lifecycle — every module exposed over REST.
/agents 18 endpoints/knowledge 14 endpoints/tasks 11 endpoints/evaluations 10 endpoints/governance 12 endpoints/approvals 7 endpoints/audit 6 endpoints/chat 9 endpoints/missions 8 endpoints/workflows 9 endpoints/marketplace 6 endpoints/analytics 8 endpoints/webhooks 5 endpoints/admin 7 endpoints{
"event": "task.approval_required",
"task_id": "tsk_5c1a",
"agent": "legal",
"risk": "high",
"summary": "Contract clause flagged for review",
"approve_url": "https://app.operanix.ai/approvals/tsk_5c1a"
}
Get an API key, read the docs, and ship your first governed agent today.