🤖 AgentOS

AI Agent Identity & Governance

Identity, trust, and governance for enterprise AI agents.

What It Does

AgentOS gives every AI agent a cryptographic identity, an immutable audit trail, a trust score, and a kill switch.

API Base URL

https://agent-api.qntyx.io

Getting Started

Register An Agent

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"]
}

Onboard The Agent

POST /api/v1/agents/{agent_id}/onboard

Returns: quantum identity, certificate, vault, audit stream, passport.

Log An Action

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"
}

Verify An Agent (Public — No Auth Required)

GET https://agent-api.qntyx.io/api/v1/public/verify-agent/{agent_id}

Endpoints

MethodPathDescription
POST/api/v1/agentsRegister an agent
POST/api/v1/agents/{agent_id}/onboardOnboard — issue identity, certificate, vault, audit stream, passport
POST/api/v1/agents/{agent_id}/actionsLog an agent action to the audit trail
GET/api/v1/public/verify-agent/{agent_id}Public agent verification (no auth)

Trust Scores

ScoreTierMeaning
81–100VERIFIEDEnterprise Trusted
61–80TRUSTEDTrusted
41–60MONITORMonitor
21–40RESTRICTEDRestricted
0–20AUTO-SUSPENDEDAuto-suspended

Authentication

All endpoints require a bearer token except the public verification endpoint. See Authentication for details.

Dashboard

Manage your agents visually at agents.qntyx.io

Pricing

Early Access — contact hello@qntyx.io