Voice-Controlled Expense Tracker with Siri, AI, and Google Sheets - n8n Workflow | Neura Market
Voice-Controlled Expense Tracker with Siri, AI, and Google Sheets
What It Does:
This project lets you talk to Siri (via Apple Shortcuts) and record or query your daily spending. The shortcut sends your message to an n8n Webhook, which uses AI to decide whether it's for writing or reading finance data, then replies with a human-friendly message - all powered by n8n + AI + Google Sheets.
---
**PAR 1: n8n Setup**
1. Create a Webhook trigger in n8n
- Add a node: Webhook
- Set HTTP Method: POST
- Set Path: siri-finance
- Enable “Respond to Webhook” = “Yes”
2. Add AI Agent Node (e.g., OpenAI, Ollama, Gemini)
- Use system prompt like:
"You are a finance assistant. Decide if the user wants to record or read transactions. If it's recording, return a JSON object with date, type, name, amount, and expense/income. If it's reading, return date range and type (Expense/Income). Always reply with a human-friendly summary."
- Input: {{ $json.text }} (from webhook)
- Output: structured json.output
3. (Optional) Add Logic to write to DB / Supabase / Google Sheets
- Append tool: Adds a new row
- Read tool: Queries past data
- Now your n8n flow is ready!
---
**PAR 2: iOS Shortcut Setup**
1. Create a new Shortcut
- Name it: Siri Finance Bot (or Finance Bot)
- Add Action: Ask for Input
- Prompt: "What would you like to record or query?"
- Input Type: Text
- Add Action: Get Contents of URL
- Method: POST
- URL: https://your-n8n-domain/webhook/siri-finance
- Headers: Content-Type: application/json
- Request Body:
```
{
"text": "Provided Input"
}
```
- Replace "Provided Input" with Magic Variable “Input Result”
2. Show Result
- Add Action: Show Result
- Content: Get Contents of URL
3. Optional: Add “Speak Text”
- If you want Siri to speak it back, add Speak Text after Show Result.
---
**Example Usage**
You: "Hey Siri, log expense $50 for coffee"
Siri: "Logged expense: Coffee $50"
Or
You: "Hey Siri, what's my total expense for July?"
Siri: "Total expense for July: $7684.64"
---
**Files to Share**
You can package the following:
- .shortcut file export
- Sample n8n workflow .json
- Optional Supabase schema / Google Sheet template
---
**Tips for Newcomers**
- Keep your Webhook public but protect with a token if needed.
- Ensure you handle emoji and newline safely for iOS compatibility.
- Add logging nodes in n8n to help debug Siri messages.
---
**Optional Project Name**
"Siri Finance Bot" / "Finance VoiceBot"
A simple voice-first way to manage your daily expenses.
Platform
n8n
Category
Finance
Price
Free
Creator
Ai Lin ⌘
code
webhook
stickyNote
agent
googleSheetsTool
respondToWebhook
lmChatOpenRouter
memoryBufferWindow
How to import this workflow into n8n
1Purchase or download the workflow to get the n8n workflow JSON file.
2In your n8n instance, open Workflows and choose "Import from File" (or paste the JSON with Ctrl+V on the canvas).
3Open each node marked with a credential warning and connect your own accounts and API keys.
4Run the workflow once manually to verify the data flow, then toggle it to Active.