check_trust_batch
Evaluate trust scores for multiple AI agents in one call, reducing round-trips. Get scores, confidence, and interaction counts for up to 20 agents with a single request.
Instructions
Check trust scores for multiple agents in a single call.
Evaluates up to 20 agents at once, reducing round-trips when you need to assess several potential counterparties before choosing one.
Each agent in the result includes score, confidence, and interaction_count. Agents that don't exist or can't be scored get an inline error.
score_type options: overall, reliability, responsiveness, honesty
Example call: check_trust_batch( agent_ids=["uuid-1", "uuid-2", "uuid-3"], score_type="reliability" )
Example response: { "score_type": "reliability", "results": [ {"agent_id": "uuid-1", "score": 0.82, "confidence": 0.71, "interaction_count": 15}, {"agent_id": "uuid-2", "score": 0.65, "confidence": 0.45, "interaction_count": 7}, {"agent_id": "uuid-3", "error_code": "not_found", "error": "Agent not found"} ], "count": 3, "succeeded": 2, "failed": 1 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_ids | Yes | ||
| score_type | No | overall | |
| access_token | No |