Your audit evidence.
Sealed and verifiable.
Tamper-evident by design.

Every log entry is hash-chained, HMAC-sealed, and anchored to a public timestamp authority. Any change — even to a timestamp — breaks verification, and anyone can check it independently, with no account.

Quickstart

Append a tamper-evident log entry in 60 seconds.

# 1. Create an API key in your dashboard → API Keys
export QNTYX_KEY="qntyx_audit_…"

# 2. Create an audit stream (returns a stream id)
curl -X POST https://audit-api.qntyx.io/streams/ \
  -H "Authorization: Bearer $QNTYX_KEY" -H "Content-Type: application/json" \
  -d '{"name": "production-audit"}'

# 3. Append a sealed entry
curl -X POST https://audit-api.qntyx.io/entries/ \
  -H "Authorization: Bearer $QNTYX_KEY" -H "Content-Type: application/json" \
  -d '{"stream_id": "STREAM_ID", "actor": "user@example.com", "action": "login", "resource_type": "session", "resource_id": "abc123"}'
How It Works

Three steps. Immutable evidence.

01

Log

Ingest events via SDK, webhook, or API. Every action your system takes becomes a log entry with actor, action, resource, and metadata.

02

Seal

Each entry is sealed with a quantum nonce + SHA-256 hash chain + HMAC-SHA256 signature. The seal is immutable and cryptographically linked to every prior entry.

03

Verify

Anyone can verify any seal using our public endpoint. No account needed. Auditors verify client evidence with a single URL.

The Quantum Difference

Why standard audit logs aren't enough.

Quantum Nonce

Each seal uses entropy from quantum entropy via QuantumRand — not pseudorandom generators.

Hash Chain

Every entry cryptographically links to the previous. Tamper with one, the entire chain breaks forward.

HMAC-SHA256

Server-side signing with a secret key prevents client-side forgery of seals or timestamps.

Immutable Timestamps

The sealed_at timestamp is locked at seal time. Backdating is cryptographically detectable.

Public Verification

Auditors verify evidence at audit-api.qntyx.io/verify — no account, no software, no friction.

Compliance

Built for regulated industries.

SOC 2
Type II audit trails
HIPAA
PHI access logging
PCI DSS
Cardholder data audit
ISO 27001
ISMS evidence
GDPR
Data processing records

Verify your client's evidence without creating an account.

Whether you're from Deloitte, PwC, EY, or KPMG — verify any quantum-sealed audit log entry or evidence package with a single GET request. No login. No software. Just proof.

GET https://audit-api.qntyx.io/verify/a3f8b2c1e9d04a7f

{
  "valid": true,
  "sealed_at": "2026-03-15T14:32:01Z",
  "action": "document.accessed",
  "entropy_source": "quantum"
}
Pricing

Start free. Scale with your audit needs.

Starter
$29/mo
per organization
  • 3 streams
  • 25,000 entries/month
  • 1-year retention
  • PDF + JSON export
  • Webhook ingestion
  • Public verification
Start Free Trial
Enterprise
$299/mo
per organization
  • Unlimited streams + entries
  • 7-year retention
  • White-label PDF reports
  • Dedicated verification endpoint
  • SIEM integration
  • SLA + SOC 2 report
QNTYX
quantumrand.dev →