Block 1 - Telegram Trigger
- Type / Role
- n8n-nodes-base.telegramTrigger - telegramTrigger
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
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 ...
n8n-nodes-base.telegramtrigger, n8n-nodes-base.if, n8n-nodes-base.httprequest, n8n-nodes-base.function, n8n-nodes-base.telegram
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Muhammad Zeeshan Ahmad.
Original n8n.io sourcePlatform: 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
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.
| 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 |
Use the JSON export at /data/workflows/5634/5634.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
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.
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 ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
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.