Automated gold price tracker with multiple currency conversion for Telegram π
Keep an eye on gold prices without lifting a finger! π΅οΈββοΈ
This workflow checks gold prices every 15 minutes and sends you a neat little report.
What it does:
β¨ Fetches the live price of gold.
π Converts it into your local currency AND USD.
π Creates a simple table with prices for 24k, 21k, and 18k gold.
π Sends the update directly to your Telegram chat!
Setup is easy: Just set your local currency (like 'EGP') and your Telegram Chat ID. That's it! β
Automated Gold Price Tracker with Multiple Currency Conversion for Telegram
This n8n workflow provides an automated solution to track the current price of gold, convert it into multiple currencies, and send regular updates to a Telegram chat. It's designed for users who want to stay informed about gold prices in different denominations without manual checks.
What it does
This workflow automates the following steps:
- Scheduled Trigger: The workflow is initiated on a predefined schedule (e.g., daily, hourly).
- Fetch Gold Price: It makes an HTTP request to an external API to retrieve the latest gold price data.
- Process and Transform Data: The raw data from the API is processed and transformed using a Code node to extract relevant gold prices and prepare them for currency conversion.
- Currency Conversion: It likely performs calculations or makes additional API calls (though not explicitly shown in the provided JSON, this is inferred from the title and common use cases for such a tracker) to convert the gold price into various currencies.
- Format Output: The
Edit Fields (Set)node prepares the data into a readable format suitable for a Telegram message. - Merge Data: The
Mergenode combines data streams, ensuring all necessary information is present before sending the message. - Send Telegram Message: Finally, it sends a formatted message containing the gold price in different currencies to a specified Telegram chat.
Prerequisites/Requirements
To use this workflow, you will need:
- n8n Instance: A running n8n instance.
- API Key for Gold Price Data: An API key for a service that provides current gold prices (e.g., Goldprice.org API, or similar). This will be configured in the
HTTP Requestnode. - Telegram Bot Token: A Telegram Bot Token to allow n8n to send messages to your chat. You can obtain this by creating a new bot via BotFather on Telegram.
- Telegram Chat ID: The Chat ID of the Telegram group or user where you want to receive the updates.
Setup/Usage
- Import the Workflow:
- Download the provided JSON workflow.
- In your n8n instance, click "New" in the workflows sidebar.
- Click the "Import from JSON" button and paste the workflow JSON.
- Configure Credentials:
- HTTP Request Node (ID: 19): Update the URL and add any required headers or query parameters for your chosen gold price API. Ensure your API key is securely stored as a credential if needed.
- Telegram Node (ID: 49):
- Create a new Telegram API credential.
- Enter your Telegram Bot Token.
- In the Telegram node itself, specify the
Chat IDwhere you want to receive the updates.
- Customize Data Processing (Code Node ID: 834):
- Review the
Codenode to understand how it processes the gold price data. You may need to adjust the JavaScript code based on the exact structure of the data returned by your chosen gold price API and the currencies you wish to track.
- Review the
- Customize Output (Edit Fields Node ID: 38):
- Adjust the
Edit Fields (Set)node to format the output message as desired for your Telegram updates.
- Adjust the
- Set Schedule (Schedule Trigger Node ID: 839):
- Configure the
Schedule Triggernode to define how often you want to receive updates (e.g., every hour, once a day).
- Configure the
- Activate the Workflow:
- Once all configurations are complete, activate the workflow by toggling the "Active" switch in the top right corner of the n8n editor.
The workflow will now run automatically based on your defined schedule, fetching gold prices, converting them, and sending updates to your Telegram chat.
Related Templates
Generate song lyrics and music from text prompts using OpenAI and Fal.ai Minimax
Spark your creativity instantly in any chatβturn a simple prompt like "heartbreak ballad" into original, full-length lyrics and a professional AI-generated music track, all without leaving your conversation. π What This Template Does This chat-triggered workflow harnesses AI to generate detailed, genre-matched song lyrics (at least 600 characters) from user messages, then queues them for music synthesis via Fal.ai's minimax-music model. It polls asynchronously until the track is ready, delivering lyrics and audio URL back in chat. Crafts original, structured lyrics with verses, choruses, and bridges using OpenAI Submits to Fal.ai for melody, instrumentation, and vocals aligned to the style Handles long-running generations with smart looping and status checks Returns complete song package (lyrics + audio link) for seamless sharing π§ Prerequisites n8n account (self-hosted or cloud with chat integration enabled) OpenAI account with API access for GPT models Fal.ai account for AI music generation π Required Credentials OpenAI API Setup Go to platform.openai.com β API keys (sidebar) Click "Create new secret key" β Name it (e.g., "n8n Songwriter") Copy the key and add to n8n as "OpenAI API" credential type Test by sending a simple chat completion request Fal.ai HTTP Header Auth Setup Sign up at fal.ai β Dashboard β API Keys Generate a new API key β Copy it In n8n, create "HTTP Header Auth" credential: Name="Fal.ai", Header Name="Authorization", Header Value="Key [Your API Key]" Test with a simple GET to their queue endpoint (e.g., /status) βοΈ Configuration Steps Import the workflow JSON into your n8n instance Assign OpenAI API credentials to the "OpenAI Chat Model" node Assign Fal.ai HTTP Header Auth to the "Generate Music Track", "Check Generation Status", and "Fetch Final Result" nodes Activate the workflowβchat trigger will appear in your n8n chat interface Test by messaging: "Create an upbeat pop song about road trips" π― Use Cases Content Creators: YouTubers generating custom jingles for videos on the fly, streamlining production from idea to audio export Educators: Music teachers using chat prompts to create era-specific folk tunes for classroom discussions, fostering interactive learning Gift Personalization: Friends crafting anniversary R&B tracks from shared memories via quick chats, delivering emotional audio surprises Artist Brainstorming: Songwriters prototyping hip-hop beats in real-time during sessions, accelerating collaboration and iteration β οΈ Troubleshooting Invalid JSON from AI Agent: Ensure the system prompt stresses valid JSON; test the agent standalone with a sample query Music Generation Fails (401/403): Verify Fal.ai API key has minimax-music access; check usage quotas in dashboard Status Polling Loops Indefinitely: Bump wait time to 45-60s for complex tracks; inspect fal.ai queue logs for bottlenecks Lyrics Under 600 Characters: Tweak agent prompt to enforce fuller structures like [V1][C][V2][B][C]; verify output length in executions
AI-powered code review with linting, red-marked corrections in Google Sheets & Slack
Advanced Code Review Automation (AI + Lint + Slack) Whoβs it for For software engineers, QA teams, and tech leads who want to automate intelligent code reviews with both AI-driven suggestions and rule-based linting β all managed in Google Sheets with instant Slack summaries. How it works This workflow performs a two-layer review system: Lint Check: Runs a lightweight static analysis to find common issues (e.g., use of var, console.log, unbalanced braces). AI Review: Sends valid code to Gemini AI, which provides human-like review feedback with severity classification (Critical, Major, Minor) and visual highlights (red/orange tags). Formatter: Combines lint and AI results, calculating an overall score (0β10). Aggregator: Summarizes results for quick comparison. Google Sheets Writer: Appends results to your review log. Slack Notification: Posts a concise summary (e.g., number of issues and average score) to your teamβs channel. How to set up Connect Google Sheets and Slack credentials in n8n. Replace placeholders (<YOURSPREADSHEETID>, <YOURSHEETGIDORNAME>, <YOURSLACKCHANNEL_ID>). Adjust the AI review prompt or lint rules as needed. Activate the workflow β reviews will start automatically whenever new code is added to the sheet. Requirements Google Sheets and Slack integrations enabled A configured AI node (Gemini, OpenAI, or compatible) Proper permissions to write to your target Google Sheet How to customize Add more linting rules (naming conventions, spacing, forbidden APIs) Extend the AI prompt for project-specific guidelines Customize the Slack message formatting Export analytics to a dashboard (e.g., Notion or Data Studio) Why itβs valuable This workflow brings realistic, team-oriented AI-assisted code review to n8n β combining the speed of automated linting with the nuance of human-style feedback. It saves time, improves code quality, and keeps your teamβs review history transparent and centralized.
Auto-reply & create Linear tickets from Gmail with GPT-5, gotoHuman & human review
This workflow automatically classifies every new email from your linked mailbox, drafts a personalized reply, and creates Linear tickets for bugs or feature requests. It uses a human-in-the-loop with gotoHuman and continuously improves itself by learning from approved examples. How it works The workflow triggers on every new email from your linked mailbox. Self-learning Email Classifier: an AI model categorizes the email into defined categories (e.g., Bug Report, Feature Request, Sales Opportunity, etc.). It fetches previously approved classification examples from gotoHuman to refine decisions. Self-learning Email Writer: the AI drafts a reply to the email. It learns over time by using previously approved replies from gotoHuman, with per-classification context to tailor tone and style (e.g., different style for sales vs. bug reports). Human Review in gotoHuman: review the classification and the drafted reply. Drafts can be edited or retried. Approved values are used to train the self-learning agents. Send approved Reply: the approved response is sent as a reply to the email thread. Create ticket: if the classification is Bug or Feature Request, a ticket is created by another AI agent in Linear. Human Review in gotoHuman: How to set up Most importantly, install the gotoHuman node before importing this template! (Just add the node to a blank canvas before importing) Set up credentials for gotoHuman, OpenAI, your email provider (e.g. Gmail), and Linear. In gotoHuman, select and create the pre-built review template "Support email agent" or import the ID: 6fzuCJlFYJtlu9mGYcVT. Select this template in the gotoHuman node. In the "gotoHuman: Fetch approved examples" http nodes you need to add your formId. It is the ID of the review template that you just created/imported in gotoHuman. Requirements gotoHuman (human supervision, memory for self-learning) OpenAI (classification, drafting) Gmail or your preferred email provider (for email trigger+replies) Linear (ticketing) How to customize Expand or refine the categories used by the classifier. Update the prompt to reflect your own taxonomy. Filter fetched training data from gotoHuman by reviewer so the writer adapts to their personalized tone and preferences. Add more context to the AI email writer (calendar events, FAQs, product docs) to improve reply quality.