Demography
This provides insights into an individual's demographic characteristics.
METHOD: POST
RESOURCE URL
{{base-url}}/api/v1/request/customer-insights/kyc-attributes
You can either make this request by specifying the individual's BVN or mobile phone number.
Sample Request 1
{
"identificationType": "bvn",
"identificationNumber": "22260996349"
}
Sample Request 2
{
"identificationType": "phone",
"identificationNumber": "2348161106464"
}
Sample Response
{
"responseCode": "00",
"responseMessage": "Successful",
"data": {
"fullName": "KINGSLEY UGWUEZUMBA",
"state": "Imo",
"dateOfBirth": "1991-08-05",
"bvn": "22260996349",
"phone": "2348161106464",
"gender": "M",
"ageCluster": "Millennial",
"region": "south-east"
}
}
Updated 5 days ago