Audit prep
weeks → min
Evidence packs generated, not assembled by hand.
One job: sign a verifiable statement about a subject — a SOC2 control, a supplier fact, a model card — so auditors get math, not a policy PDF.
With an API key this calls the live POST /v1/attest endpoint and returns the sealed response. Without one it shows a representative sealed payload so you can see the shape.
from epochcore_app_primitives import Client with Client(api_key="...") as c: a = c.attest.attest(subject="acme-corp/soc2-cc6.1", claims={"control":"CC6.1","status":"passing"}) print(c.attest.verify(a["attestation_id"]))