Skip to main content
POST
/
v1
/
documents
/
extraction
/
ind_voter_id
Ind Voter Id Ocr
curl --request POST \
  --url https://production.deepvue.tech/v1/documents/extraction/ind_voter_id \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "document1": "<string>",
  "document2": "<string>",
  "name": "<string>"
}
'
{
  "code": 200,
  "transaction_id": [
    "25859290-2a81-4327-b269-484fb17e76b9"
  ],
  "message": [
    "Document processed successfuly"
  ],
  "data": {
    "address": "string",
    "age": "string",
    "date_of_birth": "string",
    "district": "string",
    "fathers_name": "string",
    "gender": "string",
    "house_number": "string",
    "id_number": "string",
    "is_scanned": "string",
    "name_on_card": "string",
    "pincode": "string",
    "state": "string",
    "street_address": "string",
    "year_of_birth": "string"
  }
}

Authorizations

Authorization
string
header
required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

x-api-key
string
header
required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Body

application/json
document1
string
required

The main document being submitted for extraction of respective information.

document2
string

The secondary document being submitted along with the primary document for extraction of respective information.

name
string

The name of the document being submitted for extraction of respective information.

Response

Successful Response