Know your customers better through an API that allows you to do KYC/AML and 3D Liveness
Talk to Sales● User Friendly
● Easy integration
● Secure passwordless solutions for your customers
● 3D liveness detection & anti-spoofing technology
● White-labeled login & onboarding
● Flexible branding
● Multi-language support
● OCR data extraction & template– Over 700+ supported documents from over 150+ countries
● Latin, Arabic, Cyrillic, Hebrew, Thai, Japanese Character Language
● One API to verify all types of identifiers (IDs, License Plate Number, VIN, etc)
● Over 40 APIs from USA, Mexico, Colombia, Peru, Ecuador, Venezuela, International.
var axios = require('axios');
var qs = require('qs');
var data = qs.stringify({
'documentType': 'CC',
'documentNumber': '4590875'
});
var config = {
method: 'post',
url: 'https://verifik.co/v2/co/consultarNombres',
headers: {
'Authorization': 'Bearer your_api_key',
'Content-Type': 'application/x-www-form-urlencoded'
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});