Aadhaar Card Number Verification
Verifying Aadhaar card by number.
URL: /api/v1/aadhaar-card-number-verification/
Method: POST
Auth Required: YesParameters
| Parameter Name | Type | Description |
|---|---|---|
| aadhaar_card_number | string | Number of Aadhaar Card |
Request json
{
"aadhaar_card_number": "xxxxxxxxxxx1"
}Response
The response will contain a JSON object with the following fields:
| Field | Type | Description |
|---|---|---|
| status_code | int | Status code |
| message | string | Brief Details of status |
| data | array | Return Data into data field as a list |
Each object in the data array will have the following fields:
| Field | Type | Description |
|---|---|---|
| verified | string | Aadhaar card verify status |
| age_band | stirng | Age Band of the user |
| gender | stirng | Gender of the user |
| state | string. | State of country |
| mobile_number | stirng | Mobile 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"
}
}