Declared vs. observed
Compares operational claims against current external signals.
Authority Continuity Primitive
A bounded evaluation primitive that checks whether declared state still maintains evidentiary contact with authority evidence before high-consequence systems proceed.
Compares operational claims against current external signals.
Returns admissible, conditional, or inadmissible with drift signals.
Every evaluation returns a deterministic artifact hash for replay.
Commercial access
Access is organized around throughput, retention, replayability, and deployment sensitivity — not seats.
Developer
For early integrations, interoperability tests, and prototype systems.
Infrastructure
For production systems requiring runtime evidentiary continuity.
Enterprise / Sovereignty
For private, hybrid, sovereign-region, or on-prem evaluation nodes.
Endpoint
https://www.authority-continuity.com/api/evaluate
Authentication
Production customers use issued ac_live tokens. Playground
tokens are temporary and should not be used in production.
Bearer YOUR_CLIENT_TOKEN
Live playground
Generate a playground token, submit an evaluation packet, and inspect the outcome exactly as an integration would receive it.
No playground token generated yet.
No evaluation yet.
Enterprise access
Send a short note and the access team will follow up with deployment, retention, compliance, and throughput options.
Examples
curl -X POST https://www.authority-continuity.com/api/evaluate \ -H "Authorization: Bearer YOUR_CLIENT_TOKEN" \ -H "Content-Type: application/json" \ -d @packet.json
Invoke-RestMethod `
-Uri "https://www.authority-continuity.com/api/evaluate" `
-Method POST `
-ContentType "application/json" `
-Headers @{ Authorization = "Bearer YOUR_CLIENT_TOKEN" } `
-Body $bodyconst response = await fetch("https://www.authority-continuity.com/api/evaluate", {
method: "POST",
headers: {
Authorization: "Bearer YOUR_CLIENT_TOKEN",
"Content-Type": "application/json"
},
body: JSON.stringify(packet)
});
const result = await response.json();