ZYKAY Documentation

Integrate ZYKAY identity verification via EUDI Wallet.

Rapid integration

Add the script

<script src="https://widget-app.zykay.com/v4/loader.min.js"
        data-partner-id="pk_live_xxx"
        data-success-path="/verified"></script>

Retrieve grant_code

After success, redirect to data-success-path#grant_code=....

Exchange on the backend side

await fetch('/api/zykay/exchange', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ grant_code })
});

Verification method

Integration