Skip to main content

Track top meme coin prices with Telegram Bot and CoinGecko API

Workflow preview

Workflow preview
100%
Track top meme coin prices with Telegram Bot and CoinGecko API preview
Open on n8n.io

Important notice

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

1. Workflow Overview

Platform: n8n (Telegram Bot Integration) Purpose: Let users fetch top meme coin prices in real time using a simple /memecoin Telegram command How It Works (Logic Breakdown) This flow listens for a ...

Best for

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

Tools used

n8n-nodes-base.telegramtrigger, n8n-nodes-base.if, n8n-nodes-base.httprequest, n8n-nodes-base.function, n8n-nodes-base.telegram

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Muhammad Zeeshan Ahmad.

Original n8n.io source

1.1 Workflow description

Title
Track top meme coin prices with Telegram Bot and CoinGecko API
Workflow name
Track top meme coin prices with Telegram Bot and CoinGecko API

Platform: n8n (Telegram Bot Integration) Purpose: Let users fetch top meme coin prices in real-time using a simple /memecoin Telegram command How It Works (Logic Breakdown) This flow listens for a Telegram command and fetches data from the CoinGecko API to respond with live memecoin prices.

πŸ”Ή 1. Telegram Trigger Node Listens for incoming Telegram messages from users.

Activated when a message is sent in a Telegram chat connected to the bot.

Passes the raw message (e.g., /memecoin) to the next node.

πŸ”Ή 2. IF Node – Check if Message is /memecoin Condition: {{$json["message"]["text"]}} === "/memecoin"

If true ➝ continue to fetch data from CoinGecko.

If false ➝ nothing happens.

πŸ”Ή 3. HTTP Request – Fetch Meme Coins from CoinGecko API: https://api.coingecko.com/api/v3/coins/markets?...category=meme-token

Fetches top 5 meme tokens by market cap.

Data includes:

Name

Symbol

Current price (USD)

Coin ID (for URL linking)

πŸ”Ή 4. Function Node – Format the Message Parses the JSON response from CoinGecko.

Builds a clean message like:

ruby Copy Edit πŸš€ Dogecoin (DOGE) πŸ’° Price: $0.123 πŸ”— More: https://www.coingecko.com/en/coins/dogecoin Loops through top 5 meme coins and adds line breaks.

πŸ”Ή 5. Telegram Send Node – Reply to User Sends the formatted message to the original chat.

Uses chat_id from the trigger to ensure correct user receives it.

πŸ–Ό Sample User Flow πŸ‘€ User types /memecoin in Telegram bot

πŸ€– Bot fetches meme coin prices

πŸ“¬ Bot replies with live prices + links

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 - Telegram Trigger

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

Block 2 - If /memecoin

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

Block 3 - Fetch Meme Coins

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

Block 4 - Format Message

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

Block 5 - Send to Telegram

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

3. Summary Table

Workflow Track top meme coin prices with Telegram Bot and CoinGecko API
Complexity intermediate
Nodes 5
Categories Crypto Trading
Author Muhammad Zeeshan Ahmad
Published 03 Jul 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/5634/5634.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 Track top meme coin prices with Telegram Bot and CoinGecko API do?

Platform: n8n (Telegram Bot Integration) Purpose: Let users fetch top meme coin prices in real time using a simple /memecoin Telegram command How It Works (Logic Breakdown) This flow listens for a ...

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.