Links
Comment on page

Qonto

Connect with Qonto

Connect

You must "Connect" before any other methods
from naas_drivers import qonto
# Your credentials
user_id = 'YOUR_USER_ID'
api_key = 'YOUR_API_KEY'
# Connect to Qonto
qt = qonto.connect(user_id, api_key)

Positions

Get your bank account positions
# Get bank positions
df_positions = qt.positions.get()
df_positions

Flows

Get all flows by bank accounts
# Get all flows
df_flows = qt.flows.get_all()
df_flows

Statements

Get your statements with flows and positions

Aggregated by day

Get all flows

# Get bank statement aggregated by day
df_statement = qt.statement.aggregated()
df_statement

Filtered by date

# Get bank statement aggregated by day filtered by date
df_statement = qt.statement.aggregated(date_from="2020-10-01",
date_to="2020-10-12")
df_statement

Detailed

Get all flows

# Get your statement detailed
df_statement = qt.statement.detailed()
df_statement

Filtered by date

# Get your statement detailed filtered by date
df_statement = qt.statement.detailed(date_from="2020-10-01",
date_to="2020-10-12")
df_statement
Parameters "date_from" and "date_to" must be in format "%Y-%m-%d"