Hosted endpoint
verify.algovoi.co.uk — POST any audit bundle JSON, get back a
structured pass/fail report. Stateless, no bundle retained. Rate-limited.Python (PyPI)
pip install algovoi-audit-verifier. Bundles the CLI (algovoi-verify),
the HTTP server (algovoi-verify-server), and the demo bundle generator.What the verifier checks
A bundle passes when
all_passed == true — every applicable check is ok
or legitimately skiped (no signing key supplied, no manifest available,
etc.). Any fail or fatal flips the verdict.
Hosted endpoint
X-Audit-Bundle-Key header. The hosted endpoint never logs or retains
submitted bundles; the verification is in-memory and the response is the
only side effect.
Response is 200 OK on all_passed == true, 422 Unprocessable Entity on
any failed check, 400 Bad Request on malformed JSON or empty body,
413 Payload Too Large for bodies above 5 MiB.
OpenAPI / Swagger docs at verify.algovoi.co.uk/docs.
Programmatic use (Python)
verify.algovoi.co.uk):
Programmatic use (TypeScript)
Cross-implementation parity
The Python and TypeScript verifiers are byte-for-byte equivalent. The parity is exercised by 9 cross-impl tests in the repository which generate bundles in Python and verify them in TypeScript (and vice versa). The matrix:- Same JCS canonical bytes for the same input object (RFC 8785)
- Same SHA-256 hash for the same canonical preimage
- Same HMAC-SHA256 signature for the same
(bundle - signature, key)pair - Same per-row
content_hashfor the same row content - Same
bundle_signature.hexbyte-for-byte across all 4 chain types (audit_log,screening_hits,compliance_events,negotiation_trace_events) - Same check-report shape (
all_passed,fatal[],checks[])
Demo bundle
Both implementations ship a demo bundle generator that produces a synthetic signed bundle for smoke-testing the verifier without requiring a real AlgoVoi-issued bundle:bundle_emitted_at timestamp).
Substrate
The verifier composes against the JCS canonicalisation substrate (pinned tourn:x402:canonicalisation:jcs-rfc8785-v1) and the
conformance corpus. The substrate
reference implementations in Python and TypeScript are available as
algovoi-substrate on
PyPI and @algovoi/substrate
on npm.
See also
- JCS canonicalisation substrate
- Conformance vectors
- Ecosystem contributions
- Compliance — how AlgoVoi’s
/compliance/attestationchain is the live reference exhibit the verifier was built to audit