> ## 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.

# Voter ID

> Inspect the Cashfree Smart OCR success response for a Voter ID card to map extracted fields such as EPIC number, voter name, parent name, and address.

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

<CodeGroup>
  ```Text VOTER_ID_FRONT theme={"dark"}
  {
      "verification_id": "test_verification_id",
      "reference_id": 1358,
      "status": "VALID",
      "document_type": "VOTER_ID_FRONT",
      "document_fields": {
          "age_on_issue_date": "20",
          "dob": "2004-06-10",
          "epic_number": "ABC1234567",
          "gender": "Male",
          "issue_date": "2024-09-07",
          "name": "John Doe",
          "relative_name": "Josh Doe",
          "type_voter_id": "New"
      }
  }
  ```

  ```Text VOTER_ID_BACK theme={"dark"}
  {
      "verification_id": "test_verification_id",
      "reference_id": 1358,
      "status": "VALID",
      "document_type": "VOTER_ID_BACK",
      "document_fields": {
          "address": "S / O Josh Doe, 202-parivar daser complex , dal  bazar , Gird , Gwalior , Lashkar City , Madhya Pradesh , 474019",
          "age_on_issue_date": "20",
          "dob": "2004-06-10",
          "epic_number": "ABC1234567",
          "gender": "Male",
          "issue_date": "2024-09-07",
          "state": "Gwalior",
          "type_voter_id": "New"
      }
  }
  ```
</CodeGroup>
