HomeDevelopers

115+ REST endpoints. Full agent control via API.

Everything you can do in the portal, you can do through the API — build, train, evaluate, govern and deploy agents programmatically.

14
API groups
115+
endpoints
REST
+ webhooks
Quick start

Your first agent call in 60 seconds

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.

Bearer-token auth

Issue scoped keys per environment and role.

Structured responses

Typed JSON with trust score and audit reference on every call.

Webhook events

Subscribe to approvals, completions and policy blocks in real time.

POST/v1/agents/sales/tasks
# 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"
}
API surface

14 endpoint groups

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
Webhooks

React to agent events in real time

webhook payload · task.approval_required
{
  "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"
}

Build on the Agent OS

Get an API key, read the docs, and ship your first governed agent today.