KYC
Check if a DigiLocker account exists
Check whether a mobile number or Aadhaar number is already registered with DigiLocker. This is a pre-consent lookup: it helps you decide whether to start the user in signin or signup flow.
Provide exactly one of aadhaar_number or mobile.
Credits: Free.
post/v1/kyc/digilocker/account-lookup
Request body
Example request
{
"aadhaar_number": "123456789012",
"mobile": "9876543210"
}Response
Account lookup result
Example response
{
"status": "success",
"next_step": {
"action": "start_session",
"endpoint": "POST /v1/kyc/digilocker/session"
}
}