Verify - Versions
To process various types of documents like bank statements and bills, extracting data and returning results in a structured format
Version 0.1
To extract the data from the document
POST
https://intellidocdemo.innov8tif.com
/ekyc/api/intellidoc/verify
Request Body
Name
Type
Description
apiKey*
string
API Key provided by Innov8tif. Please contact the Innov8tif sales team to obtain it.
version*
string
API version, currently Version 0.1.
docType*
string
Supported document types include:
Bank statement
SSM certificate
base64Content*
string
Base64 of image/pdf file.
Support only JPEG, PNG and PDF file only.
Maximum 3 pages only
country*
string
3 character country code following ISO 3166-1 alpha-3 (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3)
Currently only support: MYS (Malaysia).
{
"status": "success",
"messageCode": "",
"message": "",
"content": [
{
"key": "bank_name",
"value": "Maybank"
},
{
"key": "bank_account_no",
"value": "1234-1101122"
},
{
"key": "account_holder_name",
"value": "LIM KA WONG"
},
{
"key": "account_holder_address",
"value": "NO 1111, JALAN KAMANA 43231, KAMANA UTAMA, SEKSYEN 32, SHAH ALAM, 40460 SELANGOR"
},
{
"key": "statement_date",
"value": "31/05/24"
}
]
}
Last updated
Was this helpful?