# Voters Card

{% hint style="info" %}
TEST DATA

type: MAIN or OLD

number: 9001332866
{% endhint %}

## Verify a voters card number

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}//api/v1/biometrics/merchant/data/verification/gh/voters`

#### Headers

| Name                                        | Type   | Description     |
| ------------------------------------------- | ------ | --------------- |
| x-api-key<mark style="color:red;">\*</mark> | String | Your secret key |

#### Request Body

| Name                                     | Type   | Description        |
| ---------------------------------------- | ------ | ------------------ |
| type<mark style="color:red;">\*</mark>   | String | MAIN or OLD        |
| number<mark style="color:red;">\*</mark> | String | Voters card number |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{ 

    "status": true, 
    "response_code": "00", 
    "message": "Voters Information retrieved", 
    "data": { 
        "PollingStation": "", 
        "VoterID": "", 
        "Age": "", 
        "DateOfBirth": "", 
        "Sex": "", 
        "RegDate": "", 
        "Fullname": "", 
        "Picture":"base64Image",
        "Othernames": "", 
        "Surname": "" 
    } 
} 
        
```

{% endtab %}
{% endtabs %}
