CapSeal is API-first and built on open provenance standards your security team already trusts. Drop the SDK into the claims app you already run, call one verify endpoint, and route on the verdict. No blockchain, no rip-and-replace, no new app for your customer.
Native iOS (Swift, iOS 15+) and Android (Kotlin, API 26+), plus a web fallback. Wraps the open C2PA mobile bindings and adds the anti-spoofing integrity module.
One REST call takes a sealed asset and returns a verdict, an integrity score, and a proof object. Idempotent, low-latency, called at claim intake.
Subscribe to verdicts to drive routing in your claims system, or stream them to your fraud stack and the intelligence layer.
The SDK seals each capture on-device using hardware-backed keys before anything touches the network.
// iOS - seal a capture with the CapSeal SDK import CapSeal let sealed = try await CapSeal.capture( claimId: "MTR-4471", attestation: .hardware // Secure Enclave / StrongBox ) // -> signed C2PA asset + integrity assertion, sealed on-device
Send the sealed asset to the verify endpoint and route on the verdict class.
# Server - verify a sealed capture, get a verdict POST https://api.capseal.ai/v1/verify Authorization: Bearer $CARRIER_KEY { "asset": "<sealed-asset>", "line": "motor" } # <- response { "verdict": "AUTO_PAY", "class": "attested-genuine", "integrity": 0.98, "proof": "<signed-proof-object>" }
Seals use the open C2PA v2.2+ manifest format, backed by Adobe, Microsoft and the BBC. Verifiable with any C2PA tool, not just ours.
Device trust comes from Apple App Attest / DeviceCheck and Google Play Integrity - the same primitives your banking app relies on.
Every proof object re-verifies without calling CapSeal. Your infrastructure stays the source of truth in a dispute.
Request developer keys and a test harness - seal a claim and inspect the proof in an afternoon.
Request sandbox access Contact sales