← Back

Reality Contact API Access

Operational reality verification infrastructure.

Reality Contact Core evaluates whether declared operational state still maintains sufficient evidentiary contact with observed reality before high-consequence use.

Deterministic outcomes

Every evaluation returns a stable outcome with explicit drift signals and a cryptographic artifact hash.

Composable primitive

Reality Contact Core integrates into healthcare, sovereignty, finance, governance, and multi-agent operational systems.

Bounded evaluation

The primitive evaluates evidentiary contact. It does not determine truth or replace domain authority.

Commercial access

Priced as infrastructure, not a consumer SaaS tool.

Access is tied to operational environment, consequence tier, evidence retention, replayability, and monthly evaluation throughput.

Developer

$49/month

For experimentation, interoperability work, and early integrations.

  • 10,000 evaluations/month
  • Basic audit logs
  • Single API key
  • Standard replay artifacts

Infrastructure

$499–$2,500/month

For production systems that need evidentiary continuity at runtime.

  • Higher throughput
  • Multiple keys
  • Replay verification
  • Exportable audit trails

Enterprise / Sovereignty

Custom

For private, hybrid, sovereign-region, or on-prem evaluation nodes.

  • Private deployment
  • Attestation infrastructure
  • White-labeled gateways
  • Annual contracts
Discuss enterprise access

API Endpoint

POST https://www.reality-contact.com/api/evaluate

Authentication

Customer access is protected through bearer-token authentication. Active API keys also require an active subscription and available monthly quota.

Authorization Bearer YOUR_CLIENT_TOKEN

Live Evaluation Playground

Submit a packet directly against the Reality Contact evaluation endpoint.

No evaluation yet.

Example Request

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();