Page cover

network-wiredZEUS Verify API Reference

Sandbox time!

ZEUS Verify is a minimal, deterministic receipt issuance API.

It provides cryptographic temporal integrity over submitted payloads.

circle-info

Base URL:

https://verify.e2ee.ca

All endpoints return structured JSON.


Authentication

Authenticated endpoints require a Bearer token.

Header format:

Authorization: Bearer zv_live_your_key_here

Keys are validated server-side and rate limited by tier.


Endpoints Overview

Method
Endpoint
Auth Required
Description

GET

/health

No

Service status check

POST

/stamp

Yes

Issue deterministic receipt

POST

/verify

No

Verify receipt integrity

GET

/receipts

Yes

List recent receipts


Health

get
Responses
chevron-right
200

Successful Response

application/json
anyOptional
get
/health
200

Successful Response

No content

Returns service status.


Stamp

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
payloadanyRequired
Responses
chevron-right
200

Successful Response

application/json
receipt_idstringRequired
ts_unixintegerRequired
ts_zeusany ofOptional
stringOptional
or
nullOptional
payload_hashstringRequired
receipt_hashstringRequired
algostringRequired
payload_canonany ofOptional
stringOptional
or
nullOptional
receipt_versionintegerRequired
post
/stamp

Creates a deterministic ZEUS receipt from payload input.

Determinism guarantee:

Identical payload + identical timestamp input produces identical canonical structure.


Verify

post
Body
payloadanyRequired
receipt_idstringRequired
Responses
chevron-right
200

Successful Response

application/json
validbooleanRequired
post
/verify

Verifies integrity of a receipt.

No authentication required.

Verification checks:

  • Canonical structure

  • Hash recomputation

  • Structural consistency

It does not validate civil time correctness.


Get Receipt

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
receipt_idstringRequired
Responses
chevron-right
200

Successful Response

application/json
receipt_idstringRequired
created_atstring · date-timeRequired
ts_unixintegerRequired
ts_zeusany ofOptional
stringOptional
or
nullOptional
payload_hashstringRequired
receipt_hashstringRequired
algostringRequired
payload_canonany ofOptional
stringOptional
or
nullOptional
receipt_versionintegerRequired
get
/receipts/{receipt_id}

Returns recent receipts associated with your API key.

Rate limits apply based on tier.


Error Codes

circle-exclamation

Success


OpenAPI Schema

This can be used for:

  • Client generation

  • Internal documentation

  • API validation

  • Tooling integration


ZEUS Verify is infrastructure, not analytics.

Design Principles

  • Deterministic structure

  • Explicit canonicalization

  • Algorithm labeling

  • Versioned receipts

  • Minimal attack surface

ZEUS Verify does not sell time.

It sells defensible temporal integrity.

Last updated