ZeqCompliance Verify
No-auth third-party verifier for a ZeqCompliance v1 envelope. Pass the full envelope; server recomputes sha256(envelope_minus_chain) and confirms it matches envelope.chain.envelope_hash, and returns the bound ZeqProof. Lets an FDA / GMP / SOC 2 / NIST auditor confirm a compliance record matches the computation it claims to certify without holding a Zeq API key. Pure crypto — no DB lookup, no key retrieval.
| Endpoint | POST /api/zeq/compliance/verify |
| Auth | none |
| Rate limit | 60/min |
| Category | compute |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
envelope | object | Yes | Full ZeqCompliance v1 envelope (the compliance block from a /api/zeq/compute response). |
Returns
{ ok, protocol: 'ZeqCompliance', schema: 'zeq.compliance.v1', valid, envelope_id, bound_to_proof, verified_at }
Example
curl -sS -X POST \
-H "Content-Type: application/json" \
-d '{
"envelope": {}
}' \
"https://zeqsdk.com/api/zeq/compliance/verify"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-compliance-verify.