Deterministic outcomes
Every evaluation returns a stable outcome with explicit drift signals and a cryptographic artifact hash.
Reality Contact API Access
Reality Contact Core evaluates whether declared operational state still maintains sufficient evidentiary contact with observed reality before high-consequence use.
Every evaluation returns a stable outcome with explicit drift signals and a cryptographic artifact hash.
Reality Contact Core integrates into healthcare, sovereignty, finance, governance, and multi-agent operational systems.
The primitive evaluates evidentiary contact. It does not determine truth or replace domain authority.
Commercial access
Access is tied to operational environment, consequence tier, evidence retention, replayability, and monthly evaluation throughput.
Developer
For experimentation, interoperability work, and early integrations.
Infrastructure
For production systems that need evidentiary continuity at runtime.
Enterprise / Sovereignty
For private, hybrid, sovereign-region, or on-prem evaluation nodes.
https://www.reality-contact.com/api/evaluate
Customer access is protected through bearer-token authentication. Active API keys also require an active subscription and available monthly quota.
Bearer YOUR_CLIENT_TOKEN
Submit a packet directly against the Reality Contact evaluation endpoint.
No evaluation yet.
curl -X POST https://www.reality-contact.com/api/evaluate \ -H "Authorization: Bearer YOUR_CLIENT_TOKEN" \ -H "Content-Type: application/json" \ -d @packet.json
Invoke-RestMethod `
-Uri "https://www.reality-contact.com/api/evaluate" `
-Method POST `
-ContentType "application/json" `
-Headers @{ Authorization = "Bearer YOUR_CLIENT_TOKEN" } `
-Body $body
const response = await fetch(
"https://www.reality-contact.com/api/evaluate",
{
method: "POST",
headers: {
Authorization: "Bearer YOUR_CLIENT_TOKEN",
"Content-Type": "application/json"
},
body: JSON.stringify(packet)
}
);
const result = await response.json();