Go beyond traditional bureau data.
Free trial credits
Web dashboard
API access
Analyse Mobile money and Bank statements accurately in seconds.
Restraunt Owner
750
28%
Statements
Loan Application
With 1000+ different attributes and Automated tasks to make informed credit decisions faster.
- User permissioned data access.
- Upload all the statements.
- Set conditional checks.
- Utilize our proprietary machine learning algorithms.
- Income validation and verification.
- Income, Expenses, Loans, Savings.
- Rist level and cashflow score.
- Loan ability estimation.
Spend your time working on better user experiences, not stressing over how to get the data.
Generate your API keys complete integration in just minutes..
1import requests
2
3# Set API key and base URL
4API_KEY = "your-api-key"
5BASE_URL = "https://api.cladfy.com/transactions"
6
7# Fetch transactions
8response = requests.get(BASE_URL, headers={"Authorization": f"Bearer {API_KEY}"})
9
10# Print transactions
11if response.ok:
12 for tx in response.json():
13 print(f"ID: {tx['id']}, Amount: {tx['amount']}, Type: {tx['type']}")
14 else:
15 print(f"Error: {response.status_code}")