This is an unofficial API for Fennel.com (now) built using the official Fennel API. This project is not affiliated with Fennel.com in any way.
While I try my best to ensure the API is working correctly, it is an ongoing work in progress, so it may have bugs and missing features. Please feel free to contribute!
Versions prior to 2.0.0
used an unofficial reverse-engineered API that mimicked the Fennel Invest mobile app. With the release of the official API, this library has been updated to use that instead and previous versions are no longer supported or recommended.
Install with uv:
uv add 'fennel-invest-api>=2.0.0'
Or with pip:
pip install 'fennel-invest-api>=2.0.0'
Generate a new Personal Access Token (PAT) from the Fennel Dashboard.
Then, initialize the Fennel
class with your PAT
:
from fennel_invest_api import Fennel
fennel = Fennel(pat_token="your-personal-access-token")
account_info = fennel.get_account_info()
for account in account_info:
print(f"Name: {account.name}, Account ID: {account.id}, Type: {account.account_type}")
account_info = fennel.get_account_info()
for account in account_info:
summary = fennel.get_portfolio_cash_summary(account.id)
print(f"Account: {account.name}, Portfolio Value: ${summary.portfolio_value:.2f}, Buying Power: ${summary.buying_power:.2f}, Cash: ${summary.cash_available:.2f}")
account_info = fennel.get_account_info()
for account_id in account_info:
positions = fennel.get_portfolio_positions(account_id.id)
print(f"Positions for account {account_id.name}:")
for position in positions:
print(f"{position.symbol}: {position.shares} shares at ${position.value:.2f}")
Market order (Default):
order = fennel.place_order(
account_id=account_id,
symbol="AAPL",
shares=1,
side="BUY"
)
print(order)
Limit order:
order = fennel.place_order(
account_id=account_id,
ticker="AAPL",
quantity=1,
side="BUY",
order_type="LIMIT",
limit_price=150.00,
)
print(order)
Found or fixed a bug? Have a feature request? Feel free to open an issue or pull request!
Enjoying the project? Feel free to Sponsor me on GitHub or Ko-fi!
DISCLAIMER: I am not a financial advisor and not affiliated with Fennel.com. Use this tool at your own risk. I am not responsible for any losses or damages you may incur by using this project. This tool is provided as-is with no warranty.