This URL belonged to the old GitBook documentation and is now in a new location.
New URL: /identity/venezuela
You will be automatically redirected in 60 seconds...
https://api.verifik.co/v2/ve/cedulaVerify Venezuelan identification by document number. This service allows you to validate the identity of Venezuelan citizens using their national identification document number.
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
| Name | Type | Required | Description |
|---|---|---|---|
documentNumber | string | Yes | Document number. |
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/ve/cedula", {
params: { documentNumber: "123456789" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);import os, requests
url = "https://api.verifik.co/v2/ve/cedula"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentNumber": "123456789"}
r = requests.get(url, headers=headers, params=params)
print(r.json()){
"data": {
"documentNumber": "123456789",
"fullName": "Juan Pérez",
"status": "valid"
},
"signature": {"message": "Certified by Verifik.co", "dateTime": "January 16, 2024 3:44 PM"},
"id": "VE001"
}{
"code": "NotFound",
"message": "Record not found."
}documentNumber is required.For complete and updated documentation, visit: /identity/venezuela