Introduction

Welcome to the AqtaCore API

AqtaCore sits between your app and AI providers. It verifies the trigger, enforces policy, and leaves a cryptographic attestation before the action executes.

Core Features

Cryptographic attestation

Verified human sign-off, sealed before execution. Impossible to backdate.

Tamper-evident audit chain

SHA-256 hash-chained records. Mapped to EU AI Act, ISO 42001, NIST AI RMF.

ZK compliance proofs

Regulators verify without seeing prompts or weights. Groth16 SNARK circuits.

Sub-5ms enforcement

Policy, loop detection, and budget gates at inference time.

Integration

Python
import openai

client = openai.OpenAI(
    api_key="your-aqta-key",
    base_url="https://api.aqta.ai/v1"
)

response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Hello"}]
)

print(response.choices[0].message.content)

Any OpenAI-compatible SDK works unchanged.

API Reference

POST/v1/chat/completions
POST/v1/completions
GET/v1/models
GET/v1/usage

Full endpoint reference โ†’

Private pilot. Request access and we'll be in touch.

Last updated: March 2026