Live System Signals· 10:15:23 AM
40
Active DIDs
50
Envelopes Routed
8
Anchors Sealed
100%
Signal Health
How It Works
Three simple building blocks — each fully auditable.
Create a Verified Identity
One API call gives your organisation a unique, verifiable identity. No wallets, no certificates, no complexity — just instant trust credentials.
Send Securely
Your data is encrypted end-to-end with all identifying details removed before delivery. Private by design — no one can see what's inside.
Prove Everything
Every delivery creates a tamper-proof receipt you can verify at any time — without ever revealing the content itself.
Three API calls. That's it.
Activate a DID, send an audited envelope, and verify the proof — all from your existing backend.
app.js
// 1. Activate a DID-linked API key
const { api_key, did } =
environment: "production"
});
// 2. Send an envelope — zero-knowledge, audited, anchored
const { envelope_hash, proof_checksum } =
sender_key: api_key,
recipient_did: "did:arcform:partner_abc",
payload: encryptedCredential
});
// 3. Verify the proof — deterministic, reproducible
const proof = envelope_hash });
// → { status: "verified", identity: "ok", integrity: { ... } }