CLASSIFICATION: OPEN // PROTOCOL v1.0 // CLEARANCE REQUIRED

VETRAN

// TRUST INFRASTRUCTURE FOR AI AGENTS

When AI agents operate autonomously, you need to know who's cleared. Vetran is the identity and trust layer that verifies every agent, traces every delegation chain, and kills access the moment trust is revoked.

OAuth was built for humans. Vetran was built for agents.

LIVE VERIFICATION FEED
ACTIVE
AGENT ID
agt_7e2998e8e116
CLEARED
AGENT ID
agt_22f1da6eb678
REVOKED
AGENT ID
agt_9c4f3b1a2d55
PENDING
$vran verify agt_7e2998e8e116
✓ CLEARED TO EXECUTE — BADGE: ELITE
$
LAT 37.7749° NLON 122.4194° W ALT 0052MUTC 2026-03-25T03:12:13Z
<100ms
// Avg verify latency
5
// Core API endpoints
JWT
// Signed identity tokens
// Delegation chain depth

API ENDPOINTS

POST/register

Register a new agent in the Vetran registry. Returns a signed JWT identity token and unique agent ID.

IDENTITYJWTCAPABILITIES
POST/verify

Verify an agent's identity token and check if it holds the requested capabilities. Returns clearance status instantly.

TRUSTCAPABILITY CHECKCLEARANCE
POST/delegate

Issue a scoped delegation token from a parent agent to a child. Builds an auditable trust chain with expiry control.

DELEGATIONCHAINSCOPED
GET/status/:agentId

Get live standing of any registered agent — badge level, Vetran score, verification count, delegation history.

STATUSBADGESCORE
POST/revoke/:agentId

Instantly revoke an agent. All future verification calls return DENIED. Logs reason and timestamp permanently.

REVOCATIONINSTANTAUDIT LOG
GET/

Service health check and version info. Confirms the Vetran registry is operational before any agent workflow begins.

HEALTHVERSION

HOW IT WORKS

01
REGISTER

Your agent registers with Vetran. Receives a signed JWT identity token and unique agent ID. Declares its capabilities and owner org.

02
VERIFY

Before any agent executes, call /verify. Vetran checks identity, validates the token, confirms capabilities, and returns clearance in under 100ms.

03
DELEGATE

When Agent A spawns Agent B, it issues a scoped delegation token. The trust chain is cryptographically linked and fully auditable end-to-end.

04
REVOKE

When something goes wrong, one call to /revoke shuts it down instantly. The agent is blacklisted across the entire chain. Immediate. Irrevocable.

SHIP IN MINUTES

REGISTER AN AGENTPYTHON
import vetran

# Register your agent
agent = vetran.register(
  name="SchedulerAgent",
  owner="acme-corp",
  capabilities=[
    "read:calendar",
    "write:calendar",
  ]
)

print(agent.agent_id)  # agt_7e2998e8e116
print(agent.badge)     # ROOKIE → ELITE
VERIFY BEFORE EXECUTIONJAVASCRIPT
import { verify } from '@vetran/sdk'

const result = await verify({
  token: agent.token,
  requestedCapabilities: [
    'read:calendar'
  ]
})

if (result.clearedToExecute) {
  runAgent() // ✓ Vetran-verified
} else {
  console.error('NOT CLEARED')
}
DELEGATE TRUSTJAVASCRIPT
import { delegate } from '@vetran/sdk'

const chain = await delegate({
  parentToken: agentA.token,
  childAgentId: agentB.agentId,
  scopedCapabilities: [
    'read:calendar'
  ],
  expiresIn: '1h'
})

// [agt_7e29 → agt_22f1]
console.log(chain.chain)
CLI — INSTANT VERIFICATIONTERMINAL
# Install the CLI
npm install -g @vetran/cli

# Verify any agent
$ vran verify agt_7e2998e8e116
✓ CLEARED — BADGE: ELITE | SCORE: 100

# Instant revocation
$ vran revoke agt_22f1da6eb678
✗ REVOKED — blacklisted across all chains

CLEARANCE LEVELS

// LEVEL 1 — RECRUIT
$0
forever free
  • 10,000 verifications / month
  • 25 registered agents
  • Public registry
  • 7-day audit log
  • Community support
REQUEST ACCESS
// LEVEL 3 — COMMAND
$299
per month
  • Unlimited verifications
  • Multi-org registries
  • Immutable audit log
  • SSO + SCIM provisioning
  • Dedicated support
CONTACT US
// LEVEL 4 — CLASSIFIED
custom pricing
  • On-premise deployment
  • Air-gapped registry
  • SOC2 / FedRAMP exports
  • Dedicated infrastructure
  • Enterprise SLA
REQUEST BRIEFING
VET YOUR AGENTS.

The AI agent ecosystem is expanding fast. Don't let unknown agents execute with unchecked trust.

START FREE READ THE DOCS →