State + authority
Checks live state validity and current authority continuity.
Runtime Admissibility Core
A bounded evaluation primitive that checks whether current state, authority, constraints, and consequence boundary still support the requested execution path.
Checks live state validity and current authority continuity.
Returns admissible, conditional, or inadmissible with governance signals.
Every evaluation returns a deterministic artifact hash for replay and audit lineage.
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 admissibility continuity.
Enterprise / Sovereignty
For private, hybrid, sovereign-region, or on-prem evaluation nodes.
Endpoint
https://www.runtime-admissibility.com/api/evaluate
Authentication
Production customers use issued ra_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 execution 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.runtime-admissibility.com/api/evaluate \ -H "Authorization: Bearer YOUR_CLIENT_TOKEN" \ -H "Content-Type: application/json" \ -d @packet.json
Invoke-RestMethod `
-Uri "https://www.runtime-admissibility.com/api/evaluate" `
-Method POST `
-ContentType "application/json" `
-Headers @{ Authorization = "Bearer YOUR_CLIENT_TOKEN" } `
-Body $bodyconst response = await fetch("https://www.runtime-admissibility.com/api/evaluate", {
method: "POST",
headers: {
Authorization: "Bearer YOUR_CLIENT_TOKEN",
"Content-Type": "application/json"
},
body: JSON.stringify(packet)
});
const result = await response.json();