DEMO ENVIRONMENT - This is a security simulation. Ledger data is periodically reset at administrative discretion.

|

Integrate immutable evidence verification into your applications. Open source SDKs, restful APIs, and a developer-first experience.

REST API

Verify seals programmatically. Integration takes less than 5 minutes with our simple GET endpoints.

Python CLI

Power users can automate sealing workflows. Great for cron jobs, server backups, and bulk evidence processing.

Open Source

The core logic is fully open source. Audit the hashing algorithms and verify the verification logic yourself.

5 Lines of Code

Adding verification to your platform shouldn't be a headache. Our API is designed to be intuitive and framework agnostic.

  • 99.9% Uptime SLA
  • < 50ms Response Time
  • Rate Limit Friendly
const response = await fetch(`https://bitseal.orygn.tech/api/verify?root=${hash}`);
const data = await response.json();

if (data.valid) {
  console.log("Evidence Verified!");
}