Skip to main content

Daily currency rates email report with USD→EUR/NGN & BTC/ETH price tracking

Workflow preview

Workflow preview
100%
Daily currency rates email report with USD→EUR/NGN & BTC/ETH price tracking preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Track Daily Fiat & Crypto Exchange Rates Report with ExchangeRate API & CoinGecko A simple, reliable workflow that emails you a beautiful HTML currency report every morning at 8:00 AM (your n8n ...

Best for

  • Crypto Trading automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.scheduletrigger, n8n-nodes-base.stickynote, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.emailsend, n8n-nodes-base.merge

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by David Olusola.

Original n8n.io source

1.1 Workflow description

Title
Daily currency rates email report with USD→EUR/NGN & BTC/ETH price tracking
Workflow name
Daily currency rates email report with USD→EUR/NGN & BTC/ETH price tracking

💰 Track Daily Fiat & Crypto Exchange Rates Report with ExchangeRate-API & CoinGecko

A simple, reliable workflow that emails you a beautiful HTML currency report every morning at 8:00 AM (your n8n server’s timezone).
It pulls USD→EUR and USD→NGN fiat rates and BTC/ETH prices (+ 24h % change), then formats a clean HTML email.


📌 What It Does

  • Schedule: Runs daily at 8:00 AM
  • 🌍 Fiat Rates: USD→EUR and USD→NGN (via ExchangeRate-API, no key needed)
  • Crypto: BTC & ETH prices + 24h change (via CoinGecko, no key needed)
  • ✉️ Email: Sends a mobile-friendly HTML + plain text fallback

🗺️ Node Map (At a Glance)

# Node Name Type Purpose
1 Daily 8AM Trigger Schedule Trigger Fires every day at 08:00
2 Get Fiat Exchange Rates HTTP Request https://api.exchangerate-api.com/v4/latest/USD
3 Get Crypto Prices HTTP Request CoinGecko simple price endpoint
4 Merge Merge Combines fiat + crypto responses
5 Format Email Content Code (v2) Builds HTML + text, sets subject & summary
6 Send Daily Currency Email Email Send Sends the HTML email via SMTP

> 📝 Sticky Notes in the canvas explain each section. They’re optional and safe to delete.


⚙️ Required Setup

1) Schedule Time

  • Open Daily 8AM Trigger → set cron to 08:00 daily.
    Suggested cron: 0 8 * * * (server local time; if you’re in Lagos, ensure server timezone matches Africa/Lagos or adjust accordingly).

2) SMTP Credentials

  • Open Send Daily Currency Email → set:
    • From Email: your sender (e.g. [email protected])
    • To Email: recipient address
    • Credentials: select your SMTP account
  • Gmail tip: use App Passwords (with 2FA enabled).
    • Server: smtp.gmail.com
    • Port: 587 (STARTTLS) or 465 (SSL)
    • Auth: your full Gmail address + app password

3) API Access

  • Both endpoints are free & no API key:
    • Fiat (USD base): https://api.exchangerate-api.com/v4/latest/USD
    • Crypto (BTC/ETH): https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum&vs_currencies=usd&include_24hr_change=true

🧩 Input Order

The Format Email Content node is written to auto-detect which input is fiat vs crypto, so the Merge order doesn’t matter. A clean pattern is:

  • Get Crypto PricesMerge (Input 1)
  • Get Fiat Exchange RatesMerge (Input 2)
  • MergeFormat Email ContentSend Daily Currency Email

🚀 Test It Quickly

  1. Run Get Fiat Exchange Rates → verify rates.EUR and rates.NGN exist.
  2. Run Get Crypto Prices → verify BTC/ETH usd and usd_24h_change.
  3. Run Format Email Content → check it outputs subject, html, text.
  4. Run Send Daily Currency Email → confirm the styled report arrives.

🎛 Customize

  • Currencies: Add more fiat codes from rates (e.g., GBP, ZAR) and extend the HTML template.
  • Coins: Add ids= in CoinGecko (e.g., bitcoin,ethereum,solana) and render extra cards.
  • Send time: Adjust the cron (e.g., 30 7 * * * for 7:30 AM).
  • Branding: Edit colors, fonts, and header gradient in the HTML string.
  • Timezone stamp: Change the display timezone inside the Code node if needed.

🧩 Common Pitfalls & Fixes

  • Email not styled: Ensure the Email node is set to HTML format.
  • Gmail auth fails: Use an App Password and port 587 with STARTTLS.
  • Empty values: Run the two HTTP nodes once and confirm the responses contain data.
  • Rate limits: If you increase frequency, consider adding a short Wait node or caching.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Daily 8AM Trigger

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.1

Block 2 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Get Fiat Exchange Rates

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.1

Block 4 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Get Crypto Prices

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.1

Block 6 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 7 - Format Email Content

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 9 - Send Daily Currency Email

Type / Role
n8n-nodes-base.emailSend - emailSend
Config choices
Version 2

Block 10 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 11 - Merge

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.2

3. Summary Table

Workflow Daily currency rates email report with USD→EUR/NGN & BTC/ETH price tracking
Complexity intermediate
Nodes 11
Categories Crypto Trading
Author David Olusola
Published 08 Sept 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/8380/8380.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Daily currency rates email report with USD→EUR/NGN & BTC/ETH price tracking do?

Track Daily Fiat & Crypto Exchange Rates Report with ExchangeRate API & CoinGecko A simple, reliable workflow that emails you a beautiful HTML currency report every morning at 8:00 AM (your n8n ...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Crypto Trading use case.