Manifest Lookup

GET /v1/manifest/{did}

Looks up the public profile for a registered agent by DID.

Auth: None

Timeout: 10 seconds


Request

curl "https://identity.sentryagent.ai/v1/manifest/did:sentryagent:abc123"

Path Parameters

ParameterDescription
didURL-encoded agent DID (from badge sub field or /v1/verify response)

Response

{
  "did": "did:sentryagent:abc123",
  "public_profile": {
    "agent_name": "My AI Agent",
    "agent_version": "1.0.0",
    "developer_name": "Acme Corp",
    "contact_email": "dev@acme.com",
    "primary_goal": "Customer support automation",
    "tools": ["web-search", "email"],
    "trust_tier": "community",
    "data_residency": "us-east-1"
  },
  "issued_at": "2026-06-01T10:00:00.000Z"
}

Errors

CodeMeaning
404DID not found — badge was never registered or has been revoked
400Invalid DID format