▶ Live Demo
Analyze Your Documents Now
Upload real PDF bank statements or salary slips. API calls are made server-side — your files never leave the server.
📄 Statement Analyzer
Upload PDF bank statements & configure loan parameters
📊
Results Appear Here
Upload your PDF bank statements, configure the loan parameters on the left, then click Analyze Statements.
Tip
Upload statements for 12 consecutive months for the highest loan eligibility.
Privacy
Your PDFs are processed on the server and never stored.
Multi-Bank
Mix statements from different banks — all are parsed and aggregated.
Instant
Results typically appear within 2–5 seconds depending on PDF size.
API Reference
Direct API Access
You can also call the API directly using curl or Postman.
Bank Statement Analysis
curl -X POST http://localhost:8080/api/v1/bank-statements/analyse \ -F "statements=@statement_jan.pdf" \ -F "annualInterestRatePct=12" \ -F "tenureMonths=36" \ -F "monthlyObligation=0" \ -F "employmentType=Self" \ | python3 -m json.tool
Salary Slip Analysis
curl -X POST http://localhost:8080/api/v1/pay-slip/analyse \ -F "statements=@payslip_jan.pdf" \ -F "statements=@payslip_feb.pdf" \ -F "annualInterestRatePct=12" \ -F "tenureMonths=36" \ -F "monthlyObligation=0" \ | python3 -m json.tool
Backend API:Spring Boot running at localhost:8080
Start:
mvn spring-boot:run