Trust → Integrity → Verify
Re-check a snapshot commitment.
This tool applies to snapshot rows that have an attestation. Look up an attested snapshot by its numeric id and you'll get the full envelope: the upstream archive URL, the published content hash, the attested-at timestamp, and (when available) the cached mirror URL on Fonteum's 90-day rolling S3 cache. Only a raw-file SHA-256 commitment can be compared directly with re-hashed archive bytes; other commitment versions require their named methodology.
Re-check it yourself
Look up a snapshot id to see the source, date, digest, and chain fields that record actually returns. Digest comparison checks archive bytes; signature status is shown separately. No account needed.
Or run the full flow at /verify · curl /verify/<id>
Or look one up the plain way
How the raw-file SHA-256 re-hash flow works
- Look up the snapshot —
GET /verify/<snapshot_id>returns the available snapshot fields, which can includecontent_hash,source_archive_url, andcache_url. Any of those fields can be null. - Download the bytes — fetch
source_archive_urlfrom the upstream agency, ORcache_urlwhen that snapshot record provides one. - For a raw-file SHA-256 commitment, re-hash —
shasum -a 256 archive.csv. When both the bytes andcontent_hashare available, compare them. Do not apply this byte comparison to another hash version. A mismatch means the downloaded bytes do not produce the recorded digest; report it tocorrections@fonteum.com.