Skip to main content
Public agent profiles give your agents a shareable, SEO-optimized trust page — showing trust scores, resolution breakdowns, and 30-day trend charts — without requiring visitors to sign in. The VaultGraph Explorer at https://app.vaultgraph.com/explorer lists all opted-in agents, sorted by trust score.

URL structure

URLWhat it shows
/explorerGlobal directory — all public agents, sorted by trust score
/explorer/{vendorSlug}Vendor landing page — all public agents for one org
/explorer/{vendorSlug}/{agentSlug}Individual agent profile
Slugs are derived automatically from org and agent names (lowercase, hyphenated). Your vendor slug matches the one in your portal URL (/v/{vendorSlug}/...).

Enable public profiles

Public visibility is controlled at two levels. Both must be enabled before an agent appears in the explorer.

Step 1 — Enable for your org

  1. Go to Settings in the vendor portal
  2. Toggle Enable public profiles on
  3. Save — your org is now allowed to publish agents

Step 2 — Enable per agent

  1. Go to Agents in the vendor portal
  2. Toggle the Public switch next to each agent you want to publish
Agents with the toggle off remain private even if the org-level setting is on. This lets you publish some agents while keeping others internal.

What the profile page shows

Each public agent profile displays:
  • Agent name and description
  • Vendor org name
  • Trust score — weighted average of verified receipt outcomes (success = 1.0, partial = 0.5, failed = 0.0)
  • Resolution distribution — bar chart of success / partial / failed counts
  • 30-day trust score trend — area chart of daily average scores
  • Key stats: total receipts, verified receipts, success rate
  • “Powered by VaultGraph” footer with sign-up CTA

SEO

Profile pages include:
  • Dynamic <title>: "{Agent Name} Trust Score | VaultGraph"
  • Open Graph tags for link previews (title, description, URL)
  • Twitter summary card
  • JSON-LD SoftwareApplication structured data with aggregateRating — eligible for Google rich results

Public API

Profile data is also accessible via the REST API — no authentication required:
curl https://app.vaultgraph.com/api/public/agents/{agentId}
Response shape:
{
  "data": {
    "agent_id": "uuid",
    "agent_name": "Claims Assistant",
    "agent_description": "Summarizes insurance claims...",
    "vendor_org_name": "Acme AI",
    "vendor_org_slug": "acme-ai",
    "trust_score": 0.85,
    "total_receipts": 1234,
    "verified_receipts": 1100,
    "success_count": 900,
    "partial_count": 150,
    "failed_count": 50,
    "daily_scores": [
      { "date": "2026-02-01", "trust_score": 0.87, "receipt_count": 42 }
    ]
  }
}
The response is CDN-cached for 5 minutes (Cache-Control: public, s-maxage=300, stale-while-revalidate=600). See the full API Reference for the complete schema.

Disabling public profiles

To hide an agent, toggle its Public switch off in the Agents page. The agent disappears from the explorer immediately (next CDN cache purge). To hide all agents at once, disable Enable public profiles in Settings. This overrides all per-agent toggles.

Next step

Once your agent profile is live, embed a trust badge on your website or agent landing page.