aare.ai_

Aare Verify Cloud API

Real-time LLM output verification. Custom ontologies. Mathematical proofs.

Custom Ontologies Z3 Theorem Prover REST API <50ms Latency

How It Works

The aare.ai /verify API validates LLM output against your compliance policies in real time. Send any LLM response to our API with your ontology, and receive a mathematical proof of compliance or a detailed list of violations.

1. YOUR APP
LLM Request
2. LLM
Response
3. AARE.AI
Verify
4. RESULT
true/false + proof

Powered by the Z3 SMT solver from Microsoft Research, the same theorem prover trusted by AWS, Microsoft, and NASA for mission-critical verification.

Features

Custom Ontologies

Define your exact compliance rules in JSON. Support for boolean logic, comparisons, arithmetic, and complex conditionals.

Proof Certificates

Every verification returns a formal proof trace. Show auditors exactly which rules passed or failed and why.

Sub-50ms Latency

Verification completes in milliseconds. Add compliance checking to your LLM pipeline without impacting user experience.

Model Agnostic

Works with any LLM: GPT-4, Claude, Llama, Gemini, or your fine-tuned models. Verification is independent of generation.

Pre-built Ontologies

Get started immediately with ontologies for HIPAA, fair lending, mortgage compliance, and more.

Semantic Extraction

Automatically extracts entities from any phrasing. "35% DTI" and "debt-to-income of thirty-five percent" parse identically.

API Example

# Verify LLM output against fair lending rules

curl -X POST https://api.aare.ai/verify \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "llm_output": "Loan approved for $75,000 at 6.5% APR. Credit score: 720, DTI: 35%, down payment: 10%.",
    "ontology": "fair-lending-v1"
  }'

# Response
{
  "verified": true,
  "violations": [],
  "parsed_data": {
    "amount": 75000,
    "credit_score": 720,
    "dti": 35,
    "down_payment": 10
  },
  "proof": {
    "verification_id": "a3d8c1f2-5b7e...",
    "solver": "Z3 SMT Solver"
  },
  "execution_time_ms": 12
}

Try It Live

Applied Rule Set:
Loan ≤ $100k
Credit ≥ 600
DTI ≤ 43%
Down Payment ≥ 5%
Choose example:
Click "Verify" to see results
Get API Access

Or read the documentation

GitHub: https://github.com/aare-ai