Quick Start
Get up and running with Mati's Identity SDK in minutes.
1. Get an API Key
Create an account to receive your API key.
const init = sdk.init({ apiKey: "your-api-key"});
JavaScript
2. Integrate the widget
Embed the script in your app to open the verification widget.
import { init } from '<@/components/IdentityVerificationWidget'>
class App {
constructor(widgetSettings) {
this.sdk = init(widgetSettings);
}
verifyUser() {
this.sdk.start();
}
}
3. Launch
Start with a simple call to start verification:
SDK.start()
Runs the verification dialog
```
`Mati` is a global ID verification library that allows you to verify users' identities for financial services, access to restricted systems, and compliance needs.
const {init} = require('mati')
// This function initializes the verification process for users of Mati.
// The function requires an API key.
async function verifyUser(verification) {
// 1. Initialize session with Mati
const api = await init(verification)
// 2.
-
Mati provides a safe, secure and user-friendly verification experience that can be implemented quickly in all platforms and mobile, web apps.
- The SDK has been battle-tested. It has verified over 3 million users.
The SDK is simple to embed in any application framework:
-
1
<script< src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="1.1.2" crossorigin="anonymous">
GetCreate your API keyVerify a Userclass="flex text-sm font-medium">
Get your API key from the
-
2. Integrate SDK
Include the SDK in your app using the provided API key:
-