Shopping cart
Your cart empty!
Integrate powerful bank statement conversion directly into your application. Process PDFs and extract transaction data with our RESTful API.
Advanced OCR and machine learning extract transaction data with 99%+ accuracy.
Bank-level security with 256-bit SSL encryption and automatic file deletion.
Process statements in seconds with our optimized infrastructure.
All API requests require authentication using Bearer tokens. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYhttps://api.bankstatementconverter.com/v1const formData = new FormData();
formData.append('file', fileInput.files[0]);
const response = await fetch('https://api.bankstatementconverter.com/v1/files/upload', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
},
body: formData
});
const result = await response.json();
console.log(result.transactions);import requests
headers = {
'Authorization': 'Bearer YOUR_API_KEY'
}
response = requests.get(
'https://api.bankstatementconverter.com/v1/files/123/transactions',
headers=headers
)
transactions = response.json()
print(transactions)curl -X GET \
'https://api.bankstatementconverter.com/v1/export/123/excel' \
-H 'Authorization: Bearer YOUR_API_KEY' \
--output statement.xlsx| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/files/upload | Upload and process a bank statement PDF |
| GET | /v1/files/:id/transactions | Get extracted transactions from a file |
| GET | /v1/export/:id/excel | Export transactions to Excel format |
| GET | /v1/export/:id/csv | Export transactions to CSV format |
| GET | /v1/files | List all your uploaded files |
| DELETE | /v1/files/:id | Delete a file and its transactions |
{
"file": {
"id": 123,
"status": "completed",
"created_at": "2024-11-09T12:00:00Z"
},
"transactions": [
{
"date": "2024-11-01",
"description": "Grocery Store Purchase",
"amount": -45.50,
"category": "Groceries"
},
{
"date": "2024-11-02",
"description": "Salary Deposit",
"amount": 3500.00,
"category": "Salary"
}
]
}Sign up today and get your API key. Start with 100 free conversions per month.
Get Your API Key