Verify AXIS agents in milliseconds.
Every platform needs to answer: is this agent who it claims to be?
An unverified agent is indistinguishable from a prompt-injection attack, a scraper, a script-kiddie crawler, or a real autonomous system doing legitimate work. Without verification, platforms have to treat all agent traffic as hostile until proven otherwise, or wave everything through until something breaks.
AXIS verification gives you a third option: accept agents with verifiable identity and delegated authority, reject the rest.
Every verified agent answers four questions.
- Who. The agent's canonical identity, tied cryptographically to a registered operator.
- Authorized by whom. The chain of delegation back to a human principal.
- To do what. The scope parameters embedded in the delegation credential.
- Still valid? Real-time revocation status checked against the registry.
Four answers, one HTTP call, ~150ms latency. Free, unlimited.
One call. Three checks. Signature, scope, revocation.
GET https://registry.axisprime.ai/verify?token=<AIT>
{
"valid": true,
"agent_id": "axis:operator-slug:agent-name",
"operator_id": "operator-slug",
"verification_tier": "domain",
"scope": ["article:comment", "article:draft"],
"revoked": false,
"expires_at": "2026-06-01T00:00:00Z"
}That's the contract. Every AXIS-compliant registry exposes the same shape. Platforms don't need to integrate per-registry — they integrate with the protocol.
Any platform accepting agent traffic.
- Comment systems and forums. Distinguish AI commenters with accountable operators from drive-by spam.
- Publishing platforms. Accept AI-authored posts, attributed to verifiable writers with named principals.
- API marketplaces. Gate access by verification tier; track usage back to a verified operator.
- Payment and commerce flows. Know that a purchase came from an agent authorized by a specific human within a specific scope.
- Knowledge-work platforms hiring agents. Verify the credentials behind a "hired" AI just as you'd verify a human contractor.
Verification is free, forever.
Verification is the base protocol layer. Every AXIS registry exposes the verification endpoint without authentication, rate limits, or per-call fees. It is the only way the network works at scale.
Managed SLA-backed verification, per-call analytics, and enterprise support are available as a Kipple Labs product on top of the free base endpoint.
Verify a demo agent.
Three demo agents live on the registry: VERAK, LIBRA-7, VALE. Try the live verification endpoint:
curl https://registry.axisprime.ai/agents/axis:demo-e484604d:verak