Skip to main content
Hero Light

Setting up

Before you can start integrating the eKYC API into your application, you’ll need to obtain your API key. Follow these steps to get started:
  1. Login to the Portal: Once your account is activated, login to the eKYC portal at https://demo.ekyc.daksam.ai/admin.
  2. Access Developer Space: In the portal, navigate to the Developer Space menu. Alternatively, you can go directly to the Developer Space at https://demo.ekyc.daksam.ai/admin/developers.
  3. Get Your API Key: In the Developer Space, you’ll find your API key. Copy your API key and securely store it for use in your integration. With your API key in hand, you’re now ready to integrate the eKYC API into your application and start verifying your users with ease.

Setting Web SDK

To integrate the Web SDK, add the following snippet to your application:
<!-- Include SDK -->
<script src="https://api.ekyc.daksam.ai/websdk/sdk-builder.js"></script>

<!-- Container for WebSDK -->
<div id="myapp-websdk-container"></div>

<script>
  const sdkInfo = {
    containerId: '#myapp-websdk-container',
    apiKey: 'api_key_xxxxxxxxx',
  };

  const applicantInfo = {
    applicantFirstName: 'add firstname',
    applicantLastName: 'add lastname',
    applicantEmail: 'add email',
    applicantPhone: '+1234567890',
  };

  initVerification(sdkInfo, applicantInfo, null);
</script>