> ## Documentation Index
> Fetch the complete documentation index at: https://www.cashfree.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Aadhaar

This page provides the success response of Smart OCR API for Aadhaar document.

<CodeGroup>
  ```Text AADHAAR_FRONT theme={"dark"}
  {
      "verification_id": "test_verification_id",
      "reference_id": 1358,
      "status": "VALID",
      "document_type": "AADHAAR_FRONT",
      "document_fields": {
          "address": "S / O Josh Doe, 202-parivar daser complex , dal  bazar , Gird , Gwalior , Lashkar City , Madhya Pradesh , 474019",
          "dob": "2004-10-02",
          "father": "Josh Doe",
          "gender": "Male",
          "name": "John Doe",
          "uid": "123456789012",
      },
      "quality_checks": {
          "blur": true,
          "glare": false,
          "partially_present": false,
          "black_and_white": false,
          "face_present": true,
          "face_clear": false,
          "qr_present": false,
          "obscured": false
      },
      "fraud_checks": {
          "is_screenshot": true,
          "is_photo_of_screen": false,
          "is_photo_imposed": false,
          "is_overwritten": false
      },
      "qr_details": {
          "status": "SECURE",
          "name": "John Doe",
          "dob": "2004-10-02",
          "gender": "Male",
          "care_of": "S / O : Josh Doe",
          "address": "S / O : Josh Doe, 202-parivar daser complex, parivar daser complex, dal bazar, dal bazar, Lashkar City, Gird, Gwalior, Gwalior, Madhya Pradesh - 474019",
          "split_address": {
              "country": "India",
              "dist": "Gwalior",
              "house": "202-parivar daser complex",
              "landmark": "dal bazar",
              "pincode": 474019,
              "po": "Lashkar City",
              "state": "Madhya Pradesh",
              "street": "parivar daser complex",
              "subdist": "Gird",
              "vtc": "Gwalior",
              "locality": "dal bazar"
          },
          "year_of_birth": 2004,
          "aadhaar_last_four_digit": "9012",
          "email_linked": true,
          "mobile_linked": true,
          "mobile_hash": "hashed_mobile_value",
          "email_hash": "hashed_email_value",
          "photo_link": "<base64 encoded image>"
      }
  }
  ```

  ```Text AADHAAR_BACK theme={"dark"}
  {
      "verification_id": "test_verification_id",
      "reference_id": 1358,
      "status": "VALID",
      "document_type": "AADHAAR_BACK",
      "document_fields": {
          "address": "S / O Josh Doe, 202-parivar daser complex , dal  bazar , Gird , Gwalior , Lashkar City , Madhya Pradesh , 474019",
          "pincode": "474019",
          "uid": "123456789012"
      },
      "quality_checks": {
          "blur": true,
          "glare": false,
          "partially_present": false,
          "black_and_white": false,
          "face_present": false,
          "face_clear": false,
          "qr_present": false,
          "obscured": false
      },
      "fraud_checks": {
          "is_screenshot": true,
          "is_photo_of_screen": false,
          "is_photo_imposed": false,
          "is_overwritten": false
      },
      "qr_details": {
          "status": "SECURE",
          "name": "John Doe",
          "dob": "2004-10-02",
          "gender": "Male",
          "care_of": "S / O : Josh Doe",
          "address": "S / O : Josh Doe, 202-parivar daser complex, parivar daser complex, dal bazar, dal bazar, Lashkar City, Gird, Gwalior, Gwalior, Madhya Pradesh - 474019",
          "split_address": {
              "country": "India",
              "dist": "Gwalior",
              "house": "202-parivar daser complex",
              "landmark": "dal bazar",
              "pincode": 474019,
              "po": "Lashkar City",
              "state": "Madhya Pradesh",
              "street": "parivar daser complex",
              "subdist": "Gird",
              "vtc": "Gwalior",
              "locality": "dal bazar"
          },
          "year_of_birth": 2004,
          "aadhaar_last_four_digit": "9012",
          "email_linked": true,
          "mobile_linked": true,
          "mobile_hash": "hashed_mobile_value",
          "email_hash": "hashed_email_value",
          "photo_link": "<base64 encoded image>"
      }
  }
  ```
</CodeGroup>
