Agent Trust Scan
Submit an AI agent's URL and run a bounded live preview covering the agent card, x402 manifest, OpenAPI schema, structured data, and robots policy. Upgrade to the 0.01 USDC full report only when the task needs the complete point-in-time evidence bundle.
Free first, paid only for more evidence. The live preview
is rate-limited and returns summary signals without a wallet. The paid
POST /api/x402/agent-trust-scan
returns the full report through x402 on Base. Neither result guarantees
safety or approves a payment.
Free live preview
What you get back
The full report shape — paid clients receive this after x402 settlement:
{
"payment": {
"txHash": "0x...",
"payer": "0x...",
"network": "base",
"amount_atomic": 10000,
"settled_at": 1715958000
},
"report": {
"agent_id": "my-agent",
"endpoint": "https://example.com",
"scanner": "ontario.protocol.v1",
"trust_score": 42,
"scanned_at": "2026-05-17T18:00:00+00:00",
"signals": {
"agent_card_reachable": true,
"agent_card_well_formed": true,
"https": true,
"homepage_reachable": true,
"robots_present": true,
"robots_disallows_ai": false,
"well_known_x402": false,
"openapi_schema": false,
"schema_org_present": true
},
"issues": [
"No /.well-known/x402.json — agents cannot auto-discover paid endpoints",
"No OpenAPI schema published; agents must guess the API shape"
],
"evidence": { "agent_card": {"...": "..."}, "robots": {"...": "..."} }
}
}