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":"..."}
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"}'
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":[...]}
| Endpoint | Use |
|---|---|
| POST /api/orchestrate | Generic chat (default) |
| POST /api/12-pillar/route | Plan + delegate to 12 pillars |
| POST /api/master/orchestrate | Full Master (all 17 capabilities) |
| POST /v1/chat/completions | OpenAI-compatible |
| POST /api/code | Code with unsafe veto |
| POST /api/tools | 10 agentic tools |
| GET /api/registry | List 61 models |
| GET /api/security/audit | 6 invariants check |