We are a technology company that helps you validate different kinds of data through our propriatery Verifik API
FREE TrialValidity of SOAT
Accident History
Fines
Payments
Type of Vehicle
Name Validation
Background Check
Local Police Records
Interpol Records
Anti-Money Laundering
Social Security
Corporate Registry
Legal Representative Background Check
Employee
Background Check
Validate the background of people, vehicles and companies through a REST API. Make better business decisions through data validation.
Obtain the compiled data supplied by public and business entities all in real time. Available in PDF/JSON format.
Allow users to log in with SSO technology (without password) through Whatsapp, SMS, email and biometrics.
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);
});