Compliance Oracle API

Real-time AI compliance verification. Provable. Immutable. Enterprise-ready.

28 regulatory rulesUS-CO, EU200ms SLA

Quick Start

Query the oracle in one call. No auth required for free tier.

curl -X POST https://dingdawg.com/api/v1/compliance/security \
  -H "Content-Type: application/json" \
  -d '{"action": "deploy_high_risk_ai", "tier": "free"}'

Response Format

{
  "verdict_id": "a1b2c3d4e5f6",
  "domain": "security",
  "action": "deploy_high_risk_ai",
  "verdict": "BLOCKED",
  "reason": "SB205 §7-101: High-risk AI deployment requires impact assessment first",
  "cid": "bafybe1abc123...",
  "confidence": 1,
  "rule_source": "SB205-7-101",
  "created_at": "2026-04-07T12:00:00.000Z"
}
verdict_id — unique verification ID
verdict — ALLOWED or BLOCKED
reason — regulation citation
cid — immutable proof hash
confidence — 0.0–1.0
rule_source — specific law section

SDK Examples

Python

import requests

response = requests.post(
    "https://dingdawg.com/api/v1/compliance/security",
    json={"action": "deploy_high_risk_ai", "tier": "free"}
)
verdict = response.json()
print(verdict["verdict"])  # BLOCKED or ALLOWED

JavaScript

const response = await fetch(
  "https://dingdawg.com/api/v1/compliance/security",
  {
    method: "POST",
    headers: { "Content-Type": "application/json" },
    body: JSON.stringify({
      action: "deploy_high_risk_ai",
      tier: "free"
    })
  }
);
const verdict = await response.json();
console.log(verdict.verdict); // BLOCKED or ALLOWED

Try It Live

Pricing

Free

$0

  • 1,000 queries/day
  • All regulations
  • Public CIDs
  • No auth required

Pro

$99/mo

  • Unlimited queries
  • Custom rule sets
  • x402 invoice receipts
  • Priority SLA

Enterprise

$50k/yr

  • Dedicated node
  • White-label
  • On-prem deployment
  • Regulator portal

Covered Regulations

Colorado SB 205

AI Systems Consumer Protection — Effective Feb 2026

10 rules

EU AI Act

Regulation (EU) 2024/1689 — Effective Aug 2025

14 rules

Start verifying compliance in 30 seconds.

Try the Oracle