Overview
The Bank Account Statement API provides a detailed transaction history for a user’s bank account over a specific period. This includes all deposits and withdrawals with transaction dates, amounts, and descriptions. This data is critical for Quicko to:- Reconcile bank transactions with income sources
- Identify and classify business vs personal transactions
- Track cash flow and account balances
- Verify salary deposits and other income sources
- Maintain audit trails for tax compliance
- Identify potential undisclosed income or expenses
Query Parameters
Your API should acceptfrom and to query parameters to retrieve bank transactions within a specific date range.
Response Format
Your API should return bank statement transactions with the following fields:Headers of Bank Statement API
| Param | Type | Required | Description |
|---|---|---|---|
| transaction_id | String | Yes | Unique transaction id for each transaction |
| transaction_type | String | Yes | A transaction to be classified as a Withdrawal or Deposit |
| transaction_date | Number | Yes | Date of the transaction |
| amount | Number | Yes | Amount of the transaction |
| description | String | Yes | The narration of the transaction. |
| closing_balance | Number | No | Closing balance of the account |