5-Line Integration
Install our SDK and start verifying EU Digital Identity credentials in minutes with just 5 lines of code.
Developer-first API for accepting EU Digital Identity Wallet credentials
Install the SDK and create your first verification session:
npm install @walletgate/eudiyarn add @walletgate/eudipnpm add @walletgate/eudiimport { WalletGate } from '@walletgate/eudi';
const client = new WalletGate({
apiKey: 'wg_test_your_key_here',
});
const session = await client.createSession({
checks: [
{ type: 'age_over', value: 18 },
{ type: 'residency_eu' },
],
});
console.log(session.verificationUrl); // Show QR code to userWe handle the complexity of EU Digital Identity verification so you can focus on building your product.
Getting an API Key
wg_test_*)wg_live_*) are available on paid plans and count toward your monthly included verificationsTry it Now
Want to test the API without writing code? Use our 🔬 Interactive API Explorer to make live API calls directly from your browser.