๐Ÿš€ SOV33 Quickstart

3 steps to sovereign AI ยท 12 Jul 2026

โ† SOV33 Hub

The 3 Steps

1

Get your sovereign DID

Every SOV33 user gets an Ed25519 keypair. Your DID is your sovereign identity.

curl -X POST https://csoai.org/api/signup \\
  -H "Content-Type: application/json" \\
  -d '{"email":"you@example.com","name":"Your Name"}'
# Returns: {"did":"did:csoai:xxx","sigil":"...","key":"..."}
2

Choose your topology

SOV33 supports 6 architectures. Pick the one that fits your use case.

# Fastest (5.5ms): mixed sizes
curl -X POST https://csoai.org/api/orchestrate \\
  -H "Content-Type: application/json" \\
  -d '{"message":"Your question","citizen":"general"}'

# Most governed: 12-around-1
curl -X POST https://csoai.org/api/12-pillar/route \\
  -H "Content-Type: application/json" \\
  -d '{"message":"What is Article 0?"}'

# Most features: Master
curl -X POST https://csoai.org/api/master/orchestrate \\
  -H "Content-Type: application/json" \\
  -d '{"message":"Your question"}'
3

Verify your response

Every SOV33 response includes a SIGIL โ€” verify it for audit-grade provenance.

curl -X POST https://csoai.org/api/verify \\
  -H "Content-Type: application/json" \\
  -d '{"response":{...},"expected_sigil":"..."}'

# Returns: {"verified":true,"audit_trail":[...]}

Try It Now

Live demo

Quick Reference

EndpointUse
POST /api/orchestrateGeneric chat (default)
POST /api/12-pillar/routePlan + delegate to 12 pillars
POST /api/master/orchestrateFull Master (all 17 capabilities)
POST /v1/chat/completionsOpenAI-compatible
POST /api/codeCode with unsafe veto
POST /api/tools10 agentic tools
GET /api/registryList 61 models
GET /api/security/audit6 invariants check

๐Ÿš€ SOV33 Quickstart ยท 12 Jul 2026 ยท Hermes lane
โ† Back to SOV33