8.3.3 National Identification Extraction
This topic provides elaborates the payload details for National ID Card Details extraction service.
- USA
- South Africa
- Brazil
- Bangladesh
- India
- Kenya
- Portugal
All the details in the ID are extracted using "/extractInformation" API.
Brief of Working:
It takes "country", "document type" and "Base64 encoded image" of the NID as input. It internally generates processed text from the Identity document and extracts details like Name, First Name, Last Name, Gender, Address, DOB, DOI, DOE, and ID No. Along with the document details, it also gives image metadata information like Image DPI, Resolution and Size. The output is represented in JSON format.
Input Request:
- For a single image: Base64 encoded image, Country, Document Type (“nid" in this case).
- For multiple images: Array of the Base64 encoded images, Country, Document Type ("nid" in this case).
{
"country": "BR",
"docType": "nid",
"docBase64s": [
"------base64 encoded image------"
]
}
Output Response:
The output for "/extractInformation" API is the extracted details in the JSON format given below:
{
"documentDetails": [
{
"ImageInfo": {
"file_size": "566.32 KB",
"image_dpi": "72",
"image_resolution": "680x453",
"information": "Minimum 300 DPI is required. Poor Image Resolution. File size is proper."
},
"dateOfBirth": "12/7/1960",
"dateOfExpiry": "20/8/2030",
"dateOfIssue": "",
"docType": "NID",
"firstName": "FERNANDA",
"gender": "F",
"identificationNumber": "000000005-9",
"issuedCountry": "BRAZIL",
"issuingAuthority": "",
"lastName": "DE CARVALHO DA SILVA",
"name": "FERNANDA DE CARVALHO DA SILVA"
}
]
}
Note:
Even if Country and DocType not provided in the input request, the service tries to extract the Country Name and Document Type automatically. In case, if it is not able to extract it returns an exception/ error. This means either the quality of the document is not enough to extract all the details or resolution is poor.- Make sure the base64 encoded image string of the input image is correct.
- Document Type provided in the input should be "nid" only
- Specify the country name correctly for accurate extraction of details
Parent topic: Document Verification API Details