Robeeta Cloud Veri5 - Help Document

Robeeta Cloud Veri5 - Help Document

Verify Aadhaar

Veri5 Aadhaar Verification API

This API allows you to verify Aadhaar numbers. To verify, you need to provide your API key, Aadhaar number, and OTP sent to the mobile number linked with the Aadhaar. The process involves two steps: first, generating an OTP using the Aadhaar OTP API, and then using that OTP to verify the Aadhaar number via the Aadhaar Verify endpoint.

POST https://api.veri5.cloud.robeeta.com/Veri5/VerifyAadharDetails

Authorization: Api key

Header: Content-Type: application/json

Request Body

  • AccessKey: string - (required) The API key used for authorization.
  • AadharNumber: string - (required) The Aadhaar number you want to verify.
  • Otp: string - (required) The OTP sent to the registered mobile number.

Response Body

  • Response: string - A message indicating the outcome of the request.
  • Name: string - The name of the individual associated with the Aadhaar number.
  • Gender: string - The gender of the individual.
  • Dob: string - The date of birth of the individual.
  • Age: string - The age of the individual.
  • Careof: string - The name of the guardian or care of address.
  • Address: string - The full address of the individual.
  • House: string - The house or apartment name/number.
  • Street: string - The street address.
  • Landmark: string - A landmark near the address.
  • Location: string - The location or area.
  • PostOffice: string - The post office associated with the address.
  • District: string - The district name.
  • SubDistrict: string - The sub-district or taluka name.
  • City: string - The city name.
  • State: string - The state name.
  • Country: string - The country name.
  • PostCode: string - The postal code.
  • Photo: string - The URL of the individual's photo.
  • AadharNumber: string - The full Aadhaar number.
  • LastFourDigit: string - The last four digits of the Aadhaar number.
  • MobileNumber: string - The registered mobile number.
  • Email: string - The registered email address.

Note:

  • The response does not provide the raw mobile number or email associated with the Aadhaar number. Instead, these fields are returned as hashed or masked values to ensure privacy.
  • Make sure to enter the OTP correctly, as it may expire if not used within the specified time limit.
Sample Request:
curl -X POST \nhttps://api.veri5.cloud.robeeta.com/Veri5/VerifyAadharDetails \\\n-H "Content-Type: application/json" \\\n-d '{\n  "AccessKey": "string",\n  "AadharNumber": "string",\n  "Otp": "string"\n}'
Response:
{
  "Response": "string",
  "Name": "string",
  "Gender": "string",
  "Dob": "string",
  "Age": "string",
  "Careof": "string",
  "Address": "string",
  "House": "string",
  "Street": "string",
  "Landmark": "string",
  "Location": "string",
  "PostOffice": "string",
  "District": "string",
  "SubDistrict": "string",
  "City": "string",
  "State": "string",
  "Country": "string",
  "PostCode": "string",
  "Photo": "string",
  "AadharNumber": "string",
  "LastFourDigit": "string",
  "MobileNumber": "string",
  "Email": "string"
}