FinBin is a financial planning API that helps users manage their budgets, track expenses, and save towards financial goals (called "buckets"). It integrates with Microsoft Semantic Kernel to provide AI-driven financial insights and savings recommendations while leveraging Azure SQL Database for secure and scalable data storage.
-
Clone the repository
git clone https://github.com/your-repo/FinBin.git cd FinBin
-
Update connection strings in
appsettings.json
- Set your database connection
- Add your Azure OpenAI API keys
-
Run the migrations and start the API
dotnet ef database update dotnet run
-
Access the API documentation
- Open your browser to
http://localhost:5263/swagger
- Open your browser to
- User Management – Create and manage user profiles
- Income & Expense Tracking – Store and analyze financial transactions
- Buckets (Savings Goals) – Set up financial goals with target amounts and deadlines
- AI-Powered Financial Insights – Personalized analysis of income, expenses, and goal feasibility
- Automated Savings Recommendations – AI suggests adjustments to spending and savings
- Azure SQL Database – Secure and scalable cloud database storage
- .NET 8 Web API
- Entity Framework Core (Azure SQL Database)
- Microsoft Semantic Kernel (Azure OpenAI GPT-4)
- Swagger (API Documentation)
- Azure App Services (For Future Deployment)
dotnet tool install --global dotnet-ef
If you already have it installed, update it:
dotnet tool update --global dotnet-ef
Verify installation:
dotnet ef
You should see the EF Core logo:
_/\__
---==/ \\
___ ___ |. \|\
| __|| __| | ) \\\
| _| | _| \_/ | //|\\
|___||_| / \\\/\\
- .NET 8 SDK - Download here
- Azure Account - For Azure SQL Database and Azure OpenAI (optional for local development)
- SQL Server - Local instance or Azure SQL Database
git clone https://github.com/your-repo/FinBin.git
cd FinBin
- Update
appsettings.Development.json
:
"ConnectionStrings": {
"AZURE_SQL_CONNECTIONSTRING": "Server=localhost;Database=FinBinDB;Trusted_Connection=True;MultipleActiveResultSets=true;TrustServerCertificate=True"
}
- Update
appsettings.json
with your Azure SQL Database connection string:
"ConnectionStrings": {
"AZURE_SQL_CONNECTIONSTRING": "Server=tcp:your-server.database.windows.net,1433;Initial Catalog=FinBinDB;Persist Security Info=False;User ID=your-username;Password=your-password;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;"
}
- Update
appsettings.json
with your Azure OpenAI settings:
"AzureOpenAI": {
"Endpoint": "https://your-openai-instance.cognitiveservices.azure.com/",
"ApiKey": "your-api-key",
"DeploymentName": "gpt-4"
}
dotnet ef database update
dotnet run
The API will be available at http://localhost:5263/swagger
For development, we're using local authentication. In production, we'll implement secure authentication flows.
Reference: Secure Authentication Flows
FinBin uses Azure SQL Database for storing user data, financial records, and budget goals. The database is managed via Entity Framework Core, allowing seamless schema migrations and scalability.
FinBin integrates Microsoft Semantic Kernel to analyze financial data and provide personalized AI-driven savings recommendations. Azure OpenAI models, such as GPT-4, process financial insights dynamically.
- POST
/api/users
– Create a new user - GET
/api/users/{id}
– Get user details
- GET
/api/financial-summary/{userId}
– Retrieve financial summary - PUT
/api/financial-summary/{userId}
– Update financial summary
- POST
/api/buckets/{userId}
– Create a new savings goal - GET
/api/buckets/{userId}
– List all buckets for a user - PUT
/api/buckets/{userId}/{bucketId}
– Update a savings goal - DELETE
/api/buckets/{userId}/{bucketId}
– Delete a savings goal
- GET
/api/buckets/analyze/{userId}
– AI analysis on user's financial health - POST
/api/buckets/adjust/{userId}/{bucketId}
– AI-driven savings recommendations
The AI agent fetches a user's financial data and provides smart recommendations based on:
- Savings Timeline – How long will it take to reach a goal?
- Spending Adjustments – Suggested expense cuts to save more
- Probability Score (0-1) – Likelihood of achieving the goal in time
Example AI Response:
{
"bucket": "Vacation Fund",
"targetAmount": 5000,
"currentSavedAmount": 200,
"suggestedMonthlySavings": 400,
"probabilityScore": 0.75,
"recommendations": "Reduce subscriptions by $30 and allocate it to savings."
}
-
Database Connection Errors
- Verify your connection string is correct
- Ensure SQL Server is running
- Check firewall settings for Azure SQL
-
Azure OpenAI Integration
- Verify your API key and endpoint
- Check deployment name matches your Azure OpenAI setup
-
Entity Framework Errors
- Run
dotnet ef migrations add InitialCreate
if database doesn't exist
- Run
- AI chatbot for personalized financial coaching
- Auto-transfer savings recommendations
- Mobile app integration
- Fork the repository
- Create a feature branch
- Submit a pull request
MIT License.