Skip to main content
Returns the current trust record for every known agent. Use this endpoint to audit reputation scores and identify blocked agents before invoking them.

Response

Returns { "items": [AgentTrustRecord] }.
items
array
Array of AgentTrustRecord objects, one per known agent.

Example

curl http://your-node:8042/v1/trust/agents

Example response

{
  "items": [
    {
      "agent_id": "stripe-agent",
      "reputation_score": 0.97,
      "blocked": false,
      "updated_at": "2025-01-15T10:35:00Z"
    },
    {
      "agent_id": "legacy-agent",
      "reputation_score": 0.41,
      "blocked": true,
      "block_reason": "policy violation",
      "updated_at": "2025-01-14T08:00:00Z"
    }
  ]
}