Python library for accessing Monarch Money data.
Clone this repository from Git
git clone https://github.com/hammem/monarchmoney.git
pip install monarchmoney
There are two ways to use this library: interactive and non-interactive.
If you're using this library in something like iPython or Jupyter, you can run an interactive-login which supports multi-factor authentication:
from monarchmoney import MonarchMoney
mm = MonarchMoney()
await mm.interactive_login()
This will prompt you for the email, password and, if needed, the multi-factor token.
For a non-interactive session, you'll need to create an instance and login:
from monarchmoney import MonarchMoney
mm = MonarchMoney()
await mm.login(email, password)
This may throw a RequireMFAException
. If it does, you'll need to get a multi-factor token and call the following method:
from monarchmoney import MonarchMoney, RequireMFAException
mm = MonarchMoney()
try:
await mm.login(email, password)
except RequireMFAException:
await mm.multi_factor_authenticate(email, password, multi_factor_code)
Alternatively, you can provide the MFA Secret Key. The MFA Secret Key is found when setting up the MFA in Monarch Money by going to Settings -> Security -> Enable MFA -> and copy the "Two-factor text code". Then provide it in the login() method:
from monarchmoney import MonarchMoney, RequireMFAException
mm = MonarchMoney()
await mm.login(
email=email,
password=password,
save_session=False,
use_saved_session=False,
mfa_secret_key=mfa_secret_key,
)
As of writing this README, the following methods are supported:
get_accounts
- gets all the accounts linked to Monarch Moneyget_account_holdings
- gets all of the securities in a brokerage or similar type of accountget_account_type_options
- all account types and their subtypes available in Monarch Money-get_budgets
— all the budgets and the corresponding actual amountsget_subscription_details
- gets the Monarch Money account's status (e.g. paid or trial)get_transactions_summary
- gets the transaction summary data from the transactions pageget_transactions
- gets transaction data, defaults to returning the last 100 transactions; can also be searched by date rangeget_transaction_categories
- gets all of the categories configured in the accountget_transaction_category_groups
all category groups configured in the account-get_transaction_details
- gets detailed transaction data for a single transactionget_transaction_splits
- gets transaction splits for a single transactionget_transaction_tags
- gets all of the tags configured in the accountget_cashflow
- gets cashflow data (by category, category group, merchant and a summary)get_cashflow_summary
- gets cashflow summary (income, expense, savings, savings rate)is_accounts_refresh_complete
- gets the status of a running account refresh
delete_transaction_category
- deletes a category for transactionsdelete_transaction_categories
- deletes a list of transaction categories for transactionsrequest_accounts_refresh
- requests a synchronization / refresh of all accounts linked to Monarch Money. This is a non-blocking call. If the user wants to check on the status afterwards, they must callis_accounts_refresh_complete
.request_accounts_refresh_and_wait
- requests a synchronization / refresh of all accounts linked to Monarch Money. This is a blocking call and will not return until the refresh is complete or no longer running.create_transaction
- creates a transaction with the given attributesupdate_transaction
- modifies one or more attributes for an existing transactiondelete_transaction
- deletes a given transaction by the provided transaction idupdate_transaction_splits
- modifies how a transaction is split (or not)set_budget_amount
- sets a budget's value to the given amount (date allowed, will only apply to month specified by default). A zero amount value will "unset" or "clear" the budget for the given category.create_manual_account
- creates a new manual accountupload_account_balance_history
- uploads account history csv file for a given account
Any and all contributions -- code, documentation, feature requests, feedback -- are welcome!
If you plan to submit up a pull request, you can expect a timely review. There aren't any strict requirements around the environment you need to configure aside from using Black to auto-format the code. An action is configured in this repo to run against all PRs and merges and will block them from being committed.
How do I use this API if I login to Monarch via Google?
If you currently use Google or 'Continue with Google' to access your Monarch account, you'll need to set a password to leverage this API. You can set a password on your Monarch account by going to your security settings.
Don't forget to use a password unique to your Monarch account and to enable multi-factor authentication!