Response
Returns{ "items": [ProviderTrustRecord] }.
Array of
ProviderTrustRecord objects, one per known provider.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 providers, including reputation score and blocklist status. Blocked providers are rejected at invocation time.
{ "items": [ProviderTrustRecord] }.
ProviderTrustRecord objects, one per known provider.Show ProviderTrustRecord
blocked is true.curl http://your-node:8042/v1/trust/providers
{
"items": [
{
"provider_id": "acme-labs",
"reputation_score": 0.98,
"blocked": false,
"updated_at": "2025-01-15T10:35:00Z"
},
{
"provider_id": "untrusted-co",
"reputation_score": 0.22,
"blocked": true,
"block_reason": "repeated policy violations",
"updated_at": "2025-01-13T14:20:00Z"
}
]
}