Response
Returns{ "items": [AgentTrustRecord] }.
Array of
AgentTrustRecord objects, one per known agent.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve trust records for all agents, including reputation score and blocklist status. Blocked agents are rejected at invocation time.
{ "items": [AgentTrustRecord] }.
AgentTrustRecord objects, one per known agent.Show AgentTrustRecord
blocked is true.curl http://your-node:8042/v1/trust/agents
{
"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"
}
]
}