India
Aadhaar Card Number Verification

Aadhaar Card Number Verification

Verifying Aadhaar card by number.

URL: /api/v1/aadhaar-card-number-verification/

Method: POST

Auth Required: Yes

Parameters

Parameter NameTypeDescription
aadhaar_card_numberstringNumber of Aadhaar Card

Request json

{
  "aadhaar_card_number": "xxxxxxxxxxx1"
}

Response

The response will contain a JSON object with the following fields:
FieldTypeDescription
status_codeintStatus code
messagestringBrief Details of status
dataarrayReturn Data into data field as a list
Each object in the data array will have the following fields:
FieldTypeDescription
verifiedstringAadhaar card verify status
age_bandstirngAge Band of the user
genderstirngGender of the user
statestring.State of country
mobile_numberstirngMobile number of the user

Here is the example of a response

{
    "status_code": 200,
    "message": "Aadhaar Card Verification success",
    "data": {
        "verified": "true",
        "age_band": "20-30",
        "gender": "MALE",
        "state": "Bihar",
        "mobile_number": "*******935"
    }
}