Lookup Voters ID

This endpoint allows you to fetch a person's details using the Voter's Identification Number of the Individual.

Request

{{baseUrl}}/api/v1/kyc/vin

Header

ParameterTypeDescription
AppIdstringyou would need to create an app to get your app ID
Authorizationstringpublic secret key e.g prod_sk_1T1eSavlZxy02OT3OWlvbxK4G

Query Parameters

vin string Voter's identification number optional

Response Sample

"entity": {
    "full_name": "ADEMOLA WASIU KOLAWOLE",
    "voter_identification_number": "91F6B1F5BE295355586",
    "gender": "Male",
    "occupation": "STUDENT",
    "time_of_registration": "2011-02-18 13:59:46",
    "state": "ONDO",
    "local_government": "IDANRE",
    "registration_area_ward": "ISALU JIGBOKIN",
    "polling_unit": "OJAJIGBOKIN, O/S IN FRONT OF ABANA I & II",
    "polling_unit_code": "18/07/07/005",
    "address": "NO 16 OWODE QTS KABBA",
    "phone": "0812345678",
    "date_of_birth": "1960-10-16"
  }
curl -L -X GET '{{baseUrl}}/api/v1/kyc/vin?mode=vin&firstname={{first_name}}&lastname={{last_name}}&vin={{vin_no}}&state={{state}}' \
-H 'Content-Type: application/json' \
-H 'Authorization: SECRET_KEY'