Kenya

ID

Government database lookup API

POSThttps://id.uqudo.io/api/v2/id/lookup/ken/id
Header parameters
Body
identityNumber*string
firstName*string
lastName*string
dateOfBirth*string

yyyy-MM-dd

gender*string

M or F

Response

OK

Body
identityNumberstring
firstNamestring
lastNamestring
middleNamestring
dateOfBirthstring
dateOfBirthFormattedstring

ISO-8601 format yyyy-MM-dd

genderstring
firstNameMatchboolean
lastNameMatchboolean
dateOfBirthMatchboolean
genderMatchboolean
Request
const response = await fetch('https://id.uqudo.io/api/v2/id/lookup/ken/id', {
    method: 'POST',
    headers: {
      "Authorization": "text",
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "dateOfBirth": "text",
      "firstName": "text",
      "gender": "text",
      "identityNumber": "text",
      "lastName": "text"
    }),
});
const data = await response.json();
Response
{
  "identityNumber": "text",
  "firstName": "text",
  "lastName": "text",
  "middleName": "text",
  "dateOfBirth": "text",
  "dateOfBirthFormatted": "text",
  "gender": "text",
  "firstNameMatch": false,
  "lastNameMatch": false,
  "dateOfBirthMatch": false,
  "genderMatch": false
}

Last updated