ChequeAdmin Scope
-
Ensure you have installed the required package to use this SDK method.
-
Catalyst does not store any of the files you upload in its systems. The documents you upload are used for one-time processing only. They are not used for ML model training purposes either. Catalyst components are fully compliant with all applicable data protection and privacy laws.
-
Document Processing is only relevant to Indian users and is only available in the IN DC. This feature will not be available to users accessing from the EU, AU, US, JP, SA or CA data centers. Users outside of India from the other DCs can access the general OCR component to read and process textual content.
The CHEQUE model is a part of the Document Processing feature that enables you to process Indian bank cheque leaves as identity proof documents. This enables you to extract fields of data from a cheque using an advanced OCR technology, and fetch the parameters recognized from the cheque through the response.
You must provide the path to the image file of the front page of the cheque book.
-
Zia only processes cheques of the CTS-2010 format.
-
The CHEQUE model can only process text in English by default. No other languages are supported.
Allowed file formats: .webp, .jpeg, .png
File size limit: 15 MB
You must specify the model type as CHEQUE using modelType().
The zia reference used in the code snippets below is the component instance created to perform these operations. The promise returned here is resolved to a JSON object.
const fs = require('fs');
const result = await zia.extractOpticalCharacters(fs.createReadStream('/Users/amelia-421/Desktop/cheque.webp'), {modelType: 'CHEQUE'}); //Pass the input file with the model type
console.log(result);
Example of Expected Response
A sample response that you will receive is shown below.
{
"date": "15/11/2025",
"account_number": "89323223232222",
"amount": "10615",
"branch_name": "TAMBARAM",
"bank_name": "ABX BANK",
"ifsc": "BB9033232"
}
Last Updated 2026-07-02 14:51:41 +0530 IST
Yes
No
Send your feedback to us