India

Aadhaar Card

The following API triggers the SMS message with the OTP code to the registered mobile number associated to the card

post

Government database lookup API

Header parameters
AuthorizationstringRequired

Bearer token

Body
documentNumberstring · min: 1Required
Responses
200
OK
application/json
post
POST /api/v2/id/lookup/ind/id/otp HTTP/1.1
Host: id.uqudo.io
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 25

{
  "documentNumber": "text"
}
{
  "requestId": "text"
}

Use the OTP code to perform the actual lookup

post

Government database lookup API

Header parameters
AuthorizationstringRequired

Bearer token

Body
otpstring · min: 1Required
documentNumberstring · min: 1Required
requestIdstring · min: 1Required
Responses
200
OK
application/json
post
POST /api/v2/id/lookup/ind/id HTTP/1.1
Host: id.uqudo.io
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 57

{
  "otp": "text",
  "documentNumber": "text",
  "requestId": "text"
}
{
  "faceImage": "text",
  "fullName": "text",
  "dateOfBirth": "text",
  "dateOfBirthFormatted": "text",
  "gender": "text",
  "address": "text",
  "documentNumber": "text",
  "fatherName": "text",
  "husbandName": "text",
  "relativeName": "text"
}

PAN card

post

Government database lookup API

Header parameters
AuthorizationstringRequired

Bearer token

Body
documentNumberstring · min: 1Required
Responses
200
OK
application/json
post
POST /api/v2/id/lookup/ind/pan HTTP/1.1
Host: id.uqudo.io
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 25

{
  "documentNumber": "text"
}
{
  "fullName": "text",
  "documentNumber": "text",
  "fatherName": "text"
}

Last updated

Was this helpful?