Verify Voter Id number using official government database.

Voter ID Lookup

Validate the voter id number of a user against the government database. This API requires just voter id number as input.

Request:

{
    "template_id" : "NG_VOTERID_NUMBER_VERIFICATION",
    "user_data": {
        "identity": {
            "identity_country_code": "NG",
            "identity_number_type": "VOTER_ID",
            "identity_number": "{{Valid_Voter_Id_Number}}",
        }
    }
}

Response:

{
    "aiprise_summary": {
        "verification_result": "APPROVED"
    },
    "client_reference_id": null,
    "created_at": 123456789,
    "id_info": {

        // Normalized fields.
        "full_name": "",
        "gender": "",
        "id_issue_date": "YYYY-MM-DD",
        "id_number": "",
        "id_type": "VOTER_ID_NUMBER",
        "issue_country": "Nigeria",
        "issue_country_code": "NG",

        // Government Lookup details.
        "lookup_details": {
            "lookup_list": [
                {
                    "issuer_country_code": "NG",
                    "lookup_source": "Independent National Electoral Commission",
                    "lookup_type": "VOTER_ID",
                    "lookup_data": {
                        "birth_date": "",
                        "full_name": "",
                        "gender": "",
                        "issue_date": "",
                        "issue_state": "",
                        "vin": "",
                        "occupation": "",
                        "local_government": "",
                        "registration_area_ward": "",
                        "polling_unit": "",
                        "polling_unit_code": "",
                        "phone": "",
                    }
                }
            ]
        },
        "result": "APPROVED"
    },
    "status": "COMPLETED",
    "template_id": "{{YOUR_TEMPLATE_ID}}",
    "verification_session_id": ""
}