AI Agent Identity & Governance
Identity, trust, and governance for enterprise AI agents.
AgentOS gives every AI agent a cryptographic identity, an immutable audit trail, a trust score, and a kill switch.
https://agent-api.qntyx.io
POST /api/v1/agents
{
"name": "My Agent",
"agent_type": "supervised",
"model": "gpt-4o",
"version": "1.0.0",
"allowed_tools": ["email", "calendar"],
"allowed_apis": ["api.example.com"]
}
POST /api/v1/agents/{agent_id}/onboard
Returns: quantum identity, certificate, vault, audit stream, passport.
POST /api/v1/agents/{agent_id}/actions
{
"action_type": "tool_call",
"action_description": "Sent email to customer",
"tool_used": "email",
"input_hash": "sha256_of_input",
"output_hash": "sha256_of_output"
}
GET https://agent-api.qntyx.io/api/v1/public/verify-agent/{agent_id}
| Method | Path | Description |
|---|---|---|
POST | /api/v1/agents | Register an agent |
POST | /api/v1/agents/{agent_id}/onboard | Onboard — issue identity, certificate, vault, audit stream, passport |
POST | /api/v1/agents/{agent_id}/actions | Log an agent action to the audit trail |
GET | /api/v1/public/verify-agent/{agent_id} | Public agent verification (no auth) |
| Score | Tier | Meaning |
|---|---|---|
81–100 | VERIFIED | Enterprise Trusted |
61–80 | TRUSTED | Trusted |
41–60 | MONITOR | Monitor |
21–40 | RESTRICTED | Restricted |
0–20 | AUTO-SUSPENDED | Auto-suspended |
All endpoints require a bearer token except the public verification endpoint. See Authentication for details.
Manage your agents visually at agents.qntyx.io
Early Access — contact hello@qntyx.io