Actions7
Overview
This node interacts with the Monobank API to retrieve financial data related to a user's bank account. Specifically, the 'Get Statement' operation fetches the transaction statement for a specified account within a given date range. This is useful for users who want to analyze their spending, track transactions, or generate financial reports for a particular period.
Use Case Examples
- A user wants to get all transactions from their primary account between September 1, 2025, and September 17, 2025, to review their expenses for that period.
- A financial app integrates this node to automatically fetch monthly statements for users to display in their dashboard.
Properties
| Name | Meaning |
|---|---|
| Account ID | The identifier of the bank account for which the statement is requested. It can be obtained from the 'Get Accounts' operation or set to 0 for the default account. |
| From Date | The start date for the statement period. Transactions from this date onward will be included. |
| To Date | The end date for the statement period. Transactions up to this date will be included. This is optional; if not provided, the current date is used. |
Output
JSON
json- The transaction statement data returned by the Monobank API for the specified account and date range.
Dependencies
- Requires an API token credential for Monobank API authentication.
Troubleshooting
- Ensure the API token is provided and valid; otherwise, the node will throw an error indicating the token is required.
- Date parameters must be valid date strings; invalid dates may cause request failures.
- If the account ID is incorrect or does not exist, the API may return an error or empty data.
- Network or API errors will result in a failure with the error message from the Monobank API.
Links
- Monobank API Documentation - Official documentation for Monobank API endpoints and usage.