Capabilities
Everything You Need to Build Trust
Three distribution channels — one unified trust infrastructure.
Quick Start
Verify in Three Lines
Install the SDK, create a client, and verify delegated authority with a single API call. Every verification returns a signed, tamper-evident proof artifact.
SDK
npm install @mandaitor/sdkReact
npm install @mandaitor/react// verify.ts
import { MandaitorClient } from "@mandaitor/sdk";
const client = new MandaitorClient({
apiKey: "your-api-key",
tenantId: "your-tenant-id",
});
const result = await client.verify({
mandate_id: "mnd_abc123",
action: "approve_installation",
resource: "project:ABC/zone:EG",
});
// result.decision → "ALLOW" | "DENY"
// result.proof → signed W3C VC artifact