Register your agent and start building trust in 3 steps.
3 Quick Start — Integrate in 5 minutes
Check any agent's trust score with a single API call:
import requests
response = requests.get(
"https://agent-trust-api.vercel.app/agents/{agent_id}/trust"
)
trust = response.json()
if trust["recommendation"] == "ALLOW":
print(f"Agent trusted: score {trust['trust_score']}")
else:
print(f"Caution: {trust['trust_level']}")
const res = await fetch(
`https://agent-trust-api.vercel.app/agents/${agentId}/trust`
);
const trust = await res.json();
if (trust.recommendation === "ALLOW") {
console.log(`Agent trusted: score ${trust.trust_score}`);
} else {
console.log(`Caution: ${trust.trust_level}`);
}
curl https://agent-trust-api.vercel.app/agents/AGENT_ID/trust
Full API Reference |
Scoring Methodology |
Agent Directory