workflows.fit
Back to n8n workflows
n8n templateFreeBy Muhammad Zeeshan Ahmad

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...

DevelopmentCore NodesCommunicationHITLTelegram TriggerIfHttp RequestFunction
Loading interactive preview...

Template notes

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