Get from zero to your first trust score in under five minutes.
Visit veriswarm.ai/auth and register with your email. A workspace is created automatically.
Go to Account > Settings & Keys and copy your platform API key.
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.
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 }
}'
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.
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.