VeriSwarm
About
DocsPricingAgent Skill
LoginRegister
  1. Home
  2. /Docs
  3. /Quickstart
VeriSwarm
AboutTrust CenterDocsAPIInvestorsAgent SkillOATS SpecStatusChangelogBlogPricingTermsPrivacySLADPA

Getting Started

IntroductionQuickstartUser GuideIntegration Guide

Platform

GateGuardPassportVaultCortexFleetPortable Credentials

Integration

Agent IntegrationsPython SDKNode.js SDKMCP ServerWebhook Security

Enterprise

SSO ConfigurationRate Limits

Technical Reference

API ReferenceArchitectureData Model

Legal

Terms of ServicePrivacy Policy

Quickstart — First Trust Score in 5 Minutes

Get from zero to your first trust score in under five minutes.

1. Create Your Account (30 seconds)

Visit veriswarm.ai/auth and register with your email. A workspace is created automatically.

2. Get Your API Key (30 seconds)

Go to Account > Settings & Keys and copy your platform API key.

3. Register an Agent (1 minute)

curl -X POST https://api.veriswarm.ai/v1/public/agents/register \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "display_name": "My First Agent",
    "source_type": "platform"
  }'

Save the agent_id from the response.

4. Submit an Event (1 minute)

curl -X POST https://api.veriswarm.ai/v1/events \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "event_id": "evt_001",
    "agent_id": "YOUR_AGENT_ID",
    "source_type": "platform",
    "event_type": "task.completed",
    "occurred_at": "'$(date -u +%Y-%m-%dT%H:%M:%SZ)'",
    "payload": { "task": "onboarding", "success": true }
  }'

5. Check the Trust Score (30 seconds)

curl https://api.veriswarm.ai/v1/public/agents/YOUR_AGENT_ID/scores/current \
  -H "x-api-key: YOUR_API_KEY"

You'll see identity, risk, reliability, and autonomy scores plus a policy tier.

6. Embed the Trust Badge (1 minute)

Add this to your website:

<img src="https://veriswarm.ai/v1/badge/YOUR_AGENT_SLUG.svg" alt="VeriSwarm Trust Badge" />

The badge updates automatically as your agent's trust score changes.


What's Next?

  • Deploy an agent with Fleet — Managed agent deployment and lifecycle controls
  • Set up Guard security scanning — PII tokenization, injection detection, kill switch
  • Configure webhook notifications — Receive real-time event callbacks
  • Explore the full API — Complete endpoint reference with examples