🇻🇪Information about foreigners in Venezuela

Service to consult Venezuelan citizens using their Citizenship Card.

Information about foreigners in Venezuela

GET - https://api.verifik.co/v2/ve/foreigner-id

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.

Implementation

Headers

Query Parameters

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

{
 "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"
}

Last updated