Last updated 6 days ago
Government database lookup API
yyyy-MM-dd
\d{4}-\d{2}-\d{2}
ISO 3166-1 alpha-3 format
OK
ISO-8601 format yyyy-MM-dd
const response = await fetch('https://id.uqudo.io/api/v2/id/lookup/uae/id', { method: 'POST', headers: { "Authorization": "text", "Content-Type": "application/json" }, body: JSON.stringify({ "dateOfBirth": "text", "identityNumber": "text", "nationalityCode": "ABW" }), }); const data = await response.json();
{ "identityNumber": "text", "nationalityCode": "ABW", "cardNumber": "text", "dateOfBirth": "text", "dateOfBirthFormatted": "text", "issueDate": "text", "issueDateFormatted": "text", "dateOfExpiry": "text", "dateOfExpiryFormatted": "text" }