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.


Request body description

FieldField NameData TypeMax LengthRequiredDescription
1identificationTypeString10TrueEither 'bvn' or 'phone'
2identificationNumberString13TruePhone or BVN number

Response message description

FieldField nameData typeDescription
1responseCodeStringResponse code of the request
2responseMessageStringResponse mesaage of the request
3dataObjectResponse data containing kyc details of the request


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"
    }
}