Capabilities
Everything You Need to Build Trust
Learn the concepts, then use the APIs, SDKs, and components to build verifiable trust.
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