Skip to main content

Individual Verification

POST: https://api.creditchek.africa/v1/identity/ke/verifyIndividual


Sample JSON request payload:
{
"id_type": "national_id",
"identifier": "550000055",
"first_name": "Jane",
"last_name": "Doe"
}

Request Parameters​

NamePositionRequiredDescription
tokenHeadersTrueapp public key
id_typebodyTrueidentifier type (national_id or passport_no)
identifierbodyTrueindividual identifier
first_namebodyTrueindividual first name
last_namebodyTrueindividual last name
Example Request
---
curl --location --request POST 'https://api.creditchek.africa/v1/identity/ke/verifyIndividual' \
--header 'token: {{token}}' \
--data-raw '{
"id_type": "passport_no",
"identifier": "A01111111",
"first_name": "Jane",
"last_name": "Doe"
}'
---
Sample Response
{
"status": true,
"data": {
"national_id": "550000055",
"personalProfile": {
"alienID": "5392",
"crn": "5392",
"dateOfBirth": "1970-04-04T00:00:00-05:00",
"fullName": "surname 5392 Othernames 5392",
"gender": "M",
"maritalStatus": "UNKNOWN",
"nationalID": "5392",
"otherNames": "Othernames 5392",
"salutation": "MISTER",
"surname": "surname 5392"
},
"physicalAddressList": {
"address": "NO ",
"country": "KENYA",
"createDate": "2010-11-09T11:33:41-05:00"
},
"postalAddressList": [
{
"country": "KENYA",
"createDate": "2010-11-09T11:38:06-05:00",
"postalNo": "44075",
"postalType": "P.O.BOX"
},
{
"country": "KENYA",
"createDate": "2010-11-09T11:35:48-05:00",
"postalNo": "87",
"postalType": "P.O.BOX",
"town": "CHUKA"
}
],
"responseCode": "200"
},
"message": "successful",
"error": false
}