🇻🇪Información del ciudadano Venezolano

Servicio para consultar ciudadanos venezolanos mediante su cédula de identidad

GET - https://api.verifik.co/v2/ve/cedula

Este servicio permite a los usuarios verificar la autenticidad de una cédula de identidad venezolana proporcionando el número de documento. Esta información puede ser utilizada por empresas y organizaciones para verificar la identidad de sus clientes, empleados o socios.

Para utilizar este servicio en una interfaz gráfica, te invitamos a acceder a nuestro panel de cliente en Verifik.

Implementación

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

documentNumber

String

True

Document number of the person to be queried.

123456789

Request

import axios from 'axios';

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

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

Response

{
  "data": {
    "arrayName": [
      "GONZALEZ",
      "SANDOVAL",
      "JUAN",
      "ANTONIO"
    ],
    "birthDate": "2008-09-21",
    "documentNumber": "18359186",
    "documentType": "CCVE",
    "firstName": "JUAN ANTONIO",
    "lastName": "GONZALEZ SANDOVAL",
    "maritalStatus": "SOLTERO"
  },
  "signature": {
    "dateTime": "December 16, 2024 11:28 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "1R0A0"
}

Response Fields

Field
Type
Description

data

Object

Contains citizen's personal information.

data.arrayName

Array

Array of name components.

data.birthDate

String

Birth date of the citizen (YYYY-MM-DD). We don't bring this value on all the requests.

data.documentNumber

String

The input document number.

data.documentType

String

The input document type.

data.firstName

String

Citizen's first name.

data.lastName

String

Citizen's last name.

data.maritalStatus

String

Citizen's marital status. We don't bring this value on all the requests.

signature

Object

Signature metadata for response verification.

signature.dateTime

String

Timestamp of the response generation.

signature.message

String

Verification message.

id

String

Unique response identifier.

Note: the birthDate and maritalStatus are values that are only retrieved for certain records, is not a guaranteed field.

Last updated