Validate a Permanent Voter's Card (PVC)
Our PVC Validation service allows businesses to easily and securely verify the validity of customers' Permanent Voter's Cards (PVC) issued by the Independent National Electoral Commission (INEC). This service ensures the authenticity of voter registration data.
Key Features:
- Instant Verification: Quickly verify PVC numbers for individuals.
GET (LIVE)
{{URL}}/dikript/verification/api/v1/getpvc
GET (TEST)
{{URL}}/dikript/test/api/v1/getpvc
Parameter
Key | Description |
---|---|
pvc | pvc number valid format (XXXXXXXXXXXXXXXXXXXX) |
Header (LIVE)
Key | Description |
---|---|
x-api-key | Your Secret Key |
Header (TEST)
Key | Description |
---|---|
x-api-key | Your Public Key |
Responses
{
"status": true,
"message": "Successful",
"code": "200",
"apiVersion": "v1",
"transactionRef": "N202412310614175076",
"data": {
"firstName": "G****E",
"middleName": "C****A",
"lastName": "O***A",
"dateOfBirth": "2989-12-76",
"pvc": "XXXXXXXXXXXXXXXXXXXX",
"country": "NG"
},
"error": null
}
{
"message": "Unsuccessful",
"code": "400",
"apiVersion": "v1",
"transactionRef": "N202401101345487388",
"data": "",
"error": {
"code": 400,
"message": null
}
}
{
"status": true,
"message": "nin not found",
"code": "200",
"apiVersion": "v1",
"transactionRef": "N202401101323024787",
"data": {
"firstName": "",
"birthDate": "",
"employmentStatus": "",
"gender": "",
"middleName": "",
"nin": "",
"vNin": "",
"email": "",
"otherName": "",
"profession": "",
"birthCountry": "",
"otherSpokenLang": "",
"nokFirstName": "",
"nokLastName": "",
"nokMiddleName": "",
"photo": "",
"residenceAdressLine1": "",
"residenceAdressLine2": "",
"residenceLga": "",
"residenceState": "",
"selfOriginState": "",
"selfOriginLga": "",
"selfOriginPlace": "",
"signature": "",
"surname": "",
"telephoneNo": "",
"title": "",
"trackingId": ""
},
"error": null
}