Skip to main content

Verify Before
You Integrate.

One SDK to create mandates, verify delegated authority, and receive cryptographic proof artifacts. Build trust into your agentic AI stack.

OpenAPI 3.0TypeScript SDKReact ComponentsW3C VC / SD-JWT

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.

SDKnpm install @mandaitor/sdk
Reactnpm 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