Spaces:
Running
title: TTTPS Proof Of Time Explorer
emoji: ⏱️
colorFrom: gray
colorTo: green
sdk: static
pinned: false
TTTPS Proof-of-Time Explorer
Live demo of the TTTPS (Time-Token Transport Protocol Suite) self-sealing provenance API at kpp.kenosian.com.
Type text, hash it client-side (sha256, in your browser), anchor the hash to get a cryptographic timestamp receipt, then independently verify that receipt. This page talks directly to the live public API over CORS — there is no backend for this demo.
This is a proposal specification, not a ratified standard. A receipt attests when, order, and tamper-evidence for a content hash — explicitly not correctness of the content itself.
No SDK needed
curl -X POST https://kpp.kenosian.com/v1/keys \
-H 'Content-Type: application/json' \
-d '{"email":"you@example.com","use_case":"trying tttps"}'
sha256sum myfile.txt
curl -X POST https://kpp.kenosian.com/v1/anchor \
-H 'Content-Type: application/json' -H 'X-API-Key: <your api_key>' \
-d '{"content_hash":"<the 64-hex digest>"}'
curl 'https://kpp.kenosian.com/v1/verify?receipt_id=<your receipt_id>'
Eight agent frameworks have an integration. Which of them are installable right now, with the exact install command for each, is published in one place and not duplicated here: the integration status table.
Note: an earlier Gradio version of this demo was prototyped and verified
locally, but this HF account is not on a paid plan and HF Spaces now requires
a PRO subscription to host Gradio/Docker Spaces on cpu-basic. Static Spaces
are free for everyone, and since the TTTPS API has open CORS
(access-control-allow-origin: *), the same live anchor/verify roundtrip
works directly from the browser with no backend at all.