Last updated 7 months ago
Government database lookup API
yyyy-MM-dd
OK
const response = await fetch('https://id.uqudo.io/api/v2/id/lookup/nga/voter/id', { method: 'POST', headers: { "Authorization": "text", "Content-Type": "application/json" }, body: JSON.stringify({ "dateOfBirth": "text", "firstName": "text", "identityNumber": "text", "lastName": "text" }), }); const data = await response.json();
{ "firstName": "text", "lastName": "text", "identityNumber": "text", "gender": "text", "fullName": "text", "occupation": "text", "pollingUnitCode": "text" }
Base64 encoded face image of the user
ISO-8601 format yyyy-MM-dd
const response = await fetch('https://id.uqudo.io/api/v2/id/lookup/nga/bvn', { method: 'POST', headers: { "Authorization": "text", "Content-Type": "application/json" }, body: JSON.stringify({ "bvn": "text", "firstName": "text", "lastName": "text" }), }); const data = await response.json();
{ "faceImage": "text"