Links
Comment on page

Get statement summary by operation type

Tags: #qonto #bank #statement #naas_drivers #finance #snippet #dataframe
Author: Florent Ravenel
Last update: 2023-04-12 (Created: 2022-02-16)
Description: This notebook provides a summary of financial operations by type for Qonto users.

Input

Import library

from naas_drivers import qonto

Get your Qonto credentials

QONTO_USER_ID = "YOUR_USER_ID"
QONTO_SECRET_KEY = "YOUR_SECRET_KEY"

Parameters

# Date to start extraction, format: "AAAA-MM-JJ", example: "2021-01-01"
date_from = None
# Date to end extraction, format: "AAAA-MM-JJ", example: "2021-01-01", default = now
date_to = None

Model

Get statement summary

df_summary = qonto.connect(QONTO_USER_ID, QONTO_SECRET_KEY).statements.summary(
summary_type="OPERATION_TYPE", date_from=date_from, date_to=date_to
)

Output

Display result

df_summary
Last modified 3mo ago