Get started with VOUCH in under 5 minutes
npm install @vouch/sdkimport { Vouch } from '@vouch/sdk';
const vouch = new Vouch({ apiKey: 'your-api-key' });
const proof = await vouch.generate({
decision: {
agentName: 'my-agent',
decisionId: 'decision-123',
description: 'Approved loan per rule set v2.1'
},
ruleSet: {
name: 'lending-rules',
version: '2.1'
}
});
console.log('Proof URL:', proof.verificationUrl);Complete API documentation coming soon. For now:
https://api.getvouched.aiAuthorization headerPOST /api/proof/generate, GET /api/proof/:idIf you're using OpenClaw, VOUCH integrates with one line:
// In your OpenClaw agent code
await vouch.proveDecision({
decision: myAgentDecision,
rules: myRuleSet
});