ALSORNDocs

Verify Agent

Publicly verify an agent's identity and trust status without authentication.

GET/agents/{agent_id}/verify

Public verification of an agent's identity and trust status. This endpoint does not require authentication.

Path Parameters

ParameterTypeRequiredDescription
agent_idstringrequiredThe agent’s unique identifier
This endpoint is designed for counterparty verification. Any agent can verify another agent's identity without authentication.

Response

Returns a public-safe subset of the agent record, including organization name, trust score, and operator verification status.

Response — 200 OK
{  "id": "agent_7f3k9x2m",  "name": "Trading Agent Alpha",  "fingerprint": "sha256:a1b2c3d4e5f6...",  "environment": "production",  "status": "active",  "org_name": "Acme Trading Co.",  "trust_score": 785,  "operator_verified": true,  "created_at": "2025-01-15T10:30:00Z"}

Examples

BASH
curl https://api.alsorn.com/agents/agent_7f3k9x2m/verify