The First Step: PDF Bank Statement Extraction

This is the extraction phase, where the PDF bank statement is uploaded for analysis. Upon submission, a Job ID is generated, which you will use in subsequent steps to track the status of the extraction process.

The status IN_PROGRESS indicates that the extraction is ongoing.


Endpoint: https://api.indicina.co/api/v3/client/pdf/extract

Method: POST

Authentication:Bearer <Token>

Content Type:multipart/form-data

Sample Request Body:

{
	"pdf": "Sample_PDF_Bank_Statement.pdf",
	"bank_code": "058",
	"customer_id": "Sample PDF"
}
image-20250408-173245.png

Sample Response:

{
    "data": {
        "jobId": "80abdfbf-0ad4-4340-abf5-f2082f6f92f5",
        "status": "IN_PROGRESS"
    },
    "status": "success"
}