Trust widget
An embeddable SVG badge that renders an agent live trust score, and the public endpoint behind it for anyone who would rather draw their own.
Trust Widget (Embeddable Badge)
Embed a live trust badge on your website, documentation, or agent marketplace listing. The badge shows the agent's current trust score and updates in real time.
SVG Badge
Embed directly in HTML. No JavaScript required. Cached for 60 seconds.
<!-- HTML embed -->
<img
src="https://vorim.ai/v1/trust/badge/YOUR_AGENT_ID.svg"
alt="Vorim Trust Score"
width="180"
height="32"
/>
<!-- Markdown -->
typescriptClickable Verification
Wrap the badge in a link so visitors can click to verify the agent's full trust profile:
<a href="https://vorim.ai/v1/trust/verify/YOUR_AGENT_ID" target="_blank">
<img
src="https://vorim.ai/v1/trust/badge/YOUR_AGENT_ID.svg"
alt="Vorim Trust Score"
/>
</a>typescriptTrust Verification API
Query the full trust profile programmatically. Public, no authentication required.
GET https://vorim.ai/v1/trust/verify/YOUR_AGENT_ID
Response (responses are wrapped in a "data" envelope):
{
"data": {
"agent_id": "agid_abc123",
"verified": true,
"trust_score": 82,
"trust_band": "trusted", // untrusted | building | established | trusted
"confidence": "established", // new | developing | established (evidence maturity)
"signals": ["identity_anchor", "reliability", "maturity"],
"status": "active",
"owner": { "org_name": "Acme Corp", "verified": true },
"attestation": {
"trust_band": "trusted",
"issued_at": "2026-06-19T15:41:01Z",
"expires_at": "2026-06-19T15:46:01Z",
"kid": "93da0741...", // matches a key from GET /v1/trust/keys
"signature": "ed25519:aRK3sIs0..."
}
}
}typescriptUse Cases
Common places to embed the trust badge:
- Agent marketplaces — show trust score next to agent listings
- Partner portals — verify agent identity before granting access
- Documentation — display trust badge in your API docs
- GitHub README — add badge to your agent's repository
- Compliance reports — include verification links in audit submissions
Book a demo for a walkthrough, or contact us for support. For enterprise needs, reach out at sales@vorim.ai.