A2A conformant
A2A v0.3.0
TrustLayer
v1.0.0• TrustLayer
Reputation intelligence API for AI agents. Trust scores, Sybil detection, reviewer quality analysis, and cross-chain identity resolution for 133K+ agents across 20 chains. Pay $0.001 USDC per query via x402, or use the free demo endpoint.
Skills
-
Agent Trust Report
Full Sybil detection, reviewer quality analysis, cross-chain identity resolution, and risk assessment for any ERC-8004 registered AI agent. Costs $0.001 USDC via x402. Free demo at /demo/trust/{agentId} (5 req/hr).
reputationtrustsybil-detectionblockchainerc-8004 -
Agent Trust Score
Quick trust score lookup (0-100) with component breakdown for any ERC-8004 registered AI agent. Costs $0.001 USDC via x402. Free demo at /demo/trust/{agentId} (5 req/hr).
reputationtrustscoringblockchainerc-8004
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("e7d8e7e1-c12a-4272-a51a-a300adb3ccf7")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())