What is AXIOM?

AXIOM is the constitutional governance protocol for AI. Every AI request passes through constitutional review before reaching the user — and every AI response is evaluated before reaching your application.

407 constitutional articles. 35 immutable laws. In production since April 2, 2026.

Provider-agnosticDeterministic enforcementImmutable audit trail

Quick Start

Connect your AI to AXIOM in 3 steps.

1

Get your API credentials

Request access via the demo form or email demo@axiom-gi.com. You will receive:

bash
AXIOM_API_KEY=your_api_key
AXIOM_TENANT_ID=your_tenant_id
AXIOM_ENDPOINT=https://axiom-gi.com/api/v1
2

Send your first governed request

bash
curl -X POST https://axiom-gi.com/api/v1/govern \
  -H "X-API-Key: $AXIOM_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tenant_id": "YOUR_TENANT_ID",
    "messages": [
      {"role": "user", "content": "Hello"}
    ],
    "model": "gpt-4o"
  }'
3

Read the response

json
{
  "status": "approved",
  "response": "Hello! How can I help you?",
  "audit_id": "ax_abc123",
  "governance_ms": 45
}

If the request violates constitutional governance, the response will be:

json
{
  "status": "blocked",
  "blocked_reason": "Request blocked by constitutional governance",
  "audit_id": "ax_def456"
}

Authentication

All API requests require an API key passed in the request header.

bash
X-API-Key: YOUR_AXIOM_API_KEY
Content-Type: application/json

API keys are tenant-scoped — your key governs requests only for your tenant. Contact demo@axiom-gi.com to obtain access.

POST /api/v1/govern

Main governance endpoint. Routes your request through constitutional review before reaching the AI model.

Request

json
{
  "tenant_id": "string",
  "messages": [
    {"role": "user", "content": "string"}
  ],
  "model": "string",
  "stream": false
}
Field
Type
Description
tenant_id
string
Your tenant identifier
messages
array
Chat messages array
model
string
AI model to use
stream
boolean
Streaming (default: false)

Response — Approved

json
{
  "status": "approved",
  "response": "string",
  "audit_id": "string",
  "governance_ms": 45
}

Response — Blocked

json
{
  "status": "blocked",
  "blocked_reason": "string",
  "audit_id": "string"
}

GET /api/v1/health

Returns system health and live production statistics. No authentication required.

json
{
  "status": "healthy",
  "audit_records": 79000,
  "articles": 407,
  "tenants": 18
}

GET /api/v1/audit

Returns your tenant's governance audit records. Every request your tenant makes is logged immutably.

bash
GET /api/v1/audit?tenant=YOUR_TENANT_ID&limit=50

Response

json
{
  "records": [
    {
      "audit_id": "ax_abc123",
      "timestamp": "2026-04-11T10:23:45Z",
      "status": "approved",
      "model": "gpt-4o",
      "governance_ms": 45
    }
  ],
  "total": 1243
}

Constitutional Articles

AXIOM governance is defined by 407 constitutional articles. 35 are immutable — they cannot be changed by any entity under any condition.

Every request is evaluated against the full constitution before reaching the AI model, and every response is evaluated before reaching the user.

407Active Articles
35Immutable Laws

Audit Universe

Every governed request creates an immutable audit record. 79,000+ records since April 2, 2026.

Each record is:

Cryptographically signed (HMAC-SHA256)
Hash-chained — tamper-evident
Permanently stored — never deleted
Exportable for regulatory compliance

Supported AI Providers

AXIOM governs all major AI providers through a single constitutional layer. Your governance does not change when your model changes.

OpenAI — GPT-4o, o4-mini
Anthropic — Claude Haiku, Sonnet, Opus
Google — Gemini Flash, Pro
Meta / Groq — Llama 4
Mistral — Mistral Large
DeepSeek — DeepSeek V3
More — on request

EU AI Act

AXIOM implements EU AI Act Articles 9-15 by design. The August 2, 2026 enforcement deadline is addressable in days.

Article 9Risk Management System✅ MET
Article 10Data Governance✅ MET
Article 11Technical Documentation✅ MET
Article 12Record Keeping✅ MET
Article 13Transparency✅ MET
Article 14Human Oversight✅ MET
Article 15Accuracy & Robustness✅ MET

Need the full EU AI Act compliance package? The $15,000 package includes 7 regulator-ready documents. View package →

Other Frameworks

NIST AI RMF

AXIOM maps to GOVERN, MAP, MEASURE, and MANAGE functions.

HIPAA

Constitutional audit trail satisfies AI documentation requirements.

ISO/IEC 42001

Constitutional versioning and human oversight align with AI management system requirements.

OWASP LLM Top 10

Constitutional articles address all 10 LLM security categories.