Time to cert
< 2 s
From submit to a signed certificate PDF.
One job: turn any document, payload, or blob into a tamper-proof seal with a court-ready certificate PDF — dual-signed and offline-verifiable forever.
With an API key this calls the live POST /v1/archive/seal 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.archive.seal(payload="hello world", content_type="text/plain") print(a["archive_id"], a["cert_pdf_url"]) assert c.verify(a["archive_id"])["verified"]