Description

The Foreigners Inquiry Service in Venezuela allows you to verify the identity of foreign individuals in the country. Simply provide the document number to receive relevant information. The response includes details such as the full name of the individual, their first and last names separately, and the type of document.

This service is ideal for companies and organizations that need to reliably confirm the identity of foreign clients, employees, or partners.

To use this service in a graphical interface, we invite you to access our client panel at Verifik.

Parameters

Name Type Required? Description Example
documentNumber String True Document number of the person to consult. 123456789

Implementation

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/ve/foreigner-id>',
  params: { documentNumber: '123456789'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response 200 - (Successful response)

{
 "data": {
    "documentType": "CEVE",
    "documentNumber": "123456789",
    "fullName": "MATEO VENEZUELA VERIFIK",
    "lastName": "MATEO",
    "firstName": "VENEZUELA VERIFIK",
    "arrayName": [
      "MATEO",
      "VENEZUELA",
      "VERIFIK"
    ],
    },
    "signature": {
        "dateTime": "March 13, 2024 2:01 AM",
        "message": "Certified by Verifik.co"
    },
    "id": "7VWXP"
}

Other responses

Code Description Response Body
404 Not Found NotFound. {
"code": "NotFound",
"message": "Record not found.",
"signature": {
"dateTime": "August 31, 2022 3:24 PM",
"message": "Certified by Verifik.co"
}
}
409 Conflict Missing params. {
"code": "MissingParameter",
"message": "missing documentNumber"
}