An installable vouch skill for building hosted Vouch verification flows with the SDK and webhooks.
Install the skill:
npx skills add vlayer-xyz/vouch-skills --skill vouchVouch enables data verification from internet platforms. Users can generate cryptographic attestations that prove data authenticity (Proof of Traded Volume at Binance, Proof of Demographics at Instagram etc). This skill provides server-side web proof generation for use within Claude Code and other AI agents.
- Non-Doc KYC & KYB - Verify identity, address, age, ownership, and financial details
- Candidate Authenticity - Confirm employment, income, and professional claims
- Social & Audience Verification - Validate account ownership and audience metrics
- Email Authenticity - Prove email content via Gmail API
- Financial Data - Verify portfolio data from authenticated APIs
The skill covers the main pieces of a hosted Vouch verification flow:
- build a
verificationUrlwith@getvouch/sdk - configure
datasourceId,redirectBackUrl,webhookUrl,metadata, andinputs - receive the Vouch webhook
- verify
Authorization: PSK <secret> - parse
metadataandoutputs - persist the raw event idempotently by
requestId - upsert the verified external account into your own data model
- keep URL generation and webhook processing in separate modules
- encode only correlation fields in
metadata - select
datasourceIdfrom environment or configuration, not inline constants in handlers - treat
requestIdas both your idempotency key and provider trace ID - normalize provider-specific output fields before persistence
- store the raw webhook payload before side effects so retries stay safe
You can fetch the current datasource catalog directly:
curl -s https://app.getvouch.io/api/data-source/catalogTo inspect only ids and names:
curl -s https://app.getvouch.io/api/data-source/catalog | jq '.[] | { id, name, platformName, status }'For embedded mobile flows, see the dedicated React Native guide in this repo:
skills/
└── vouch/
├── react-native.md
├── SKILL.md
├── reference.md
└── LICENSE.txt
MIT - Copyright 2026, vlayer.xyz