Unique ID access
for your online platform

be a part of the future with Biometrics.

Download on the App Store Download form Google Play

WHY US

Top reasons to use
our service


Streamline onboarding for customers.


Prevent identity theft and fraud


Knowing your customers has never been so easy, fast, secure, compliant, advanced, flexible, friendly.


Identity Verification with Ease and Efficiency


With newly introduced 3D Liveness Detection, get the highest level of identity verification assurance in seconds


Paswordless/biometric authentication

HOW

Register with our service

We will provide you with a turnkey authentication solution, secure, performant and in line with the needs of your business.

Embedding

Easily Embed our “Login with My Identity” button in your website (using a callback url).

MyIdentity login button


            <script>
              myidentity.Buttons({
                onApprove: function(data) {
                  // The data object represents a successful identification session.
                  // It does not contain any specific user details.
                  // The data object is sent to your own login api
                  //   which uses the client id and client secret to get customer's data.
                  fetch('/your-own-api-login-endpoint', {
                    body: JSON.stringify(data),
                    method: 'POST',
                  })
                  .then((response) => {
                    // Process your own successul login response
                  })
                  .catch((error) => {
                    // Process your failed successul login response
                  })
              }).render('#myidentity-button-container');
            </script>
              

Authentication

Your server will receive a successful authentication with the payload containing user’s data/information.

Demo & documentation

JSON sample


                {
                  "firstName": "John",
                  "lastName": "Smith",
                  "isAlive": true,
                  "age": 27,
                  "address": { 
                    "streetAddress": "21 2nd Street", 
                    "city": "New York", 
                    "state": "NY", 
                    "postalCode": "10021-3100" 
                    },
                  "phoneNumbers": [ 
                      { 
                        "type": "home",
                      }
                  ]
                }