What we’ve built
TimeProofs is an open, neutral standard for digital proof of existence. One JSON proof any compliant tool can read.
Hash anything on your device. Receive an instant, signed timestamp. Anyone can verify later that it existed and is unchanged — without seeing your data.
One self-describing JSON proof readable by any ProofSpec-compliant tool.
No account · No content stored · Hash locally · Signed timestamp · Public verification · No blockchain
Demo only. Your text is hashed locally, then verified via the API. For signed proofs and options, use the full tool.
TimeProofs is an open, neutral standard for digital proof of existence. One JSON proof any compliant tool can read.
Generated content and critical data need provenance. A verifiable fingerprint solves “did this exist then, and is it unchanged?”
A minimal, auditable spec to certify existence and integrity without storing originals.
Open spec, reference API, and verifiable logs. This site is the canonical ProofSpec implementation.
AI teams · Data & Security · Legal & Compliance
Model: Hash locally → Signed timestamp → Public verification
const buf = new TextEncoder().encode(text);
const digest = await crypto.subtle.digest('SHA-256', buf);
const hash = [...new Uint8Array(digest)]
.map(b => b.toString(16).padStart(2,'0')).join('');const r = await fetch("https://api.timeproofs.io/api/timestamp", {
method:"POST",
headers:{ "Content-Type":"application/json", "Accept":"application/json" },
body: JSON.stringify({ hash, type:"event", meta:{ source:"web" } })
});
const proof = await r.json();const res = await fetch(
"https://api.timeproofs.io/api/verify?hash="+hash,
{ headers:{ "Accept":"application/json" } }
);
const check = await res.json();
Output: a self-describing .tproof.json with hash, algorithm, signed timestamp, and a public verify URL.
Open rules, interoperable, peer-verifiable. Designed for standardization and independent validation.
Edge-native reference with predictable latency and auditable logs. Drop-in examples to ship fast.
Milliseconds at the edge. No accounts. Predictable costs.
Only the hash leaves the device. Originals never upload.
Proofs read by any client that follows ProofSpec.
Provenance for prompts, outputs, datasets, and chains.
Public verification by anyone, with verifiable logs.
Fast, efficient, globally distributed architecture.
Traceability without personal data. Open verification. Stateless by design.
Traceability for model inputs/outputs with signed, auditable events.
Signed timestamp · Public verify
No content stored. Hash-only. Minimal, purpose-bound logs.
Privacy by design · No PII
Integrity and provenance for shared and programmatic data flows.
Event proofs · Audit trail
Release integrity for CI/CD: binaries and artifacts carry proof links.
Proof links · Edge-native
🔏 Proof of Release
We publish a public proof of this website build. Anyone can check it.
Release:
… ·
Hash:
… ·
Verify
Each build is timestamped and linked here. “Verify” opens a public endpoint that returns the signed record used to prove existence and integrity.
Learn more on Regulations & Compliance and transparency on About.
Planned: Product Hunt launch, Dev.to deep-dive, GitHub release, and W3C Community Group proposal.
Looking for mission and transparency? See About →