This workflow corresponds to n8n.io template #5634 — we link there as the canonical source.
This workflow follows the HTTP Request → Telegram recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "XDaL4KxmDH5086wS",
"meta": {
"templateCredsSetupCompleted": true
},
"name": "Memecoin navigator",
"tags": [],
"nodes": [
{
"id": "dff9220b-de43-48a4-9a5c-16c63d4abb7b",
"name": "Telegram Trigger",
"type": "n8n-nodes-base.telegramTrigger",
"position": [
220,
40
],
"parameters": {
"updates": [
"message"
],
"additionalFields": {}
},
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"id": "243cc624-5aec-4759-85c6-3fdd85b18c03",
"name": "If /memecoin",
"type": "n8n-nodes-base.if",
"position": [
440,
40
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"message\"][\"text\"]}}",
"value2": "/memecoin"
}
]
}
},
"typeVersion": 1
},
{
"id": "d107339d-d7fc-4258-85ad-099f50090848",
"name": "Fetch Meme Coins",
"type": "n8n-nodes-base.httpRequest",
"position": [
660,
40
],
"parameters": {
"url": "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&order=market_cap_desc&per_page=5&page=1&sparkline=false&category=meme-token",
"options": {}
},
"typeVersion": 1
},
{
"id": "32b5faa8-e15f-4a9f-a1aa-68f73f452e81",
"name": "Format Message",
"type": "n8n-nodes-base.function",
"onError": "continueRegularOutput",
"position": [
880,
40
],
"parameters": {
"functionCode": "const chatId = $node[\"Telegram Trigger\"].json[\"message\"][\"chat\"][\"id\"];\nconst coins = items[0].json; // the array of meme coins\n\nlet messageText = coins.map(coin => {\n const name = coin.name || \"Unknown\";\n const symbol = coin.symbol ? coin.symbol.toUpperCase() : \"N/A\";\n const price = coin.current_price !== undefined ? `$${coin.current_price}` : \"Not available\";\n const id = coin.id || \"unknown\";\n\n return `\ud83d\ude80 *${name}* (${symbol})\\n\ud83d\udcb0 Price: ${price}\\n\ud83d\udd17 More: https://www.coingecko.com/en/coins/${id}`;\n}).join(\"\\n\\n\"); // separates each coin block\n\nreturn [{\n json: {\n chat_id: chatId,\n text: messageText\n }\n}];\n"
},
"executeOnce": false,
"notesInFlow": false,
"typeVersion": 1,
"alwaysOutputData": false
},
{
"id": "f2b74ea5-0092-43af-9b11-fb0d15a7a067",
"name": "Send to Telegram",
"type": "n8n-nodes-base.telegram",
"position": [
1100,
40
],
"parameters": {
"text": "={{$json[\"text\"]}}",
"chatId": "={{$json[\"chat_id\"]}}",
"additionalFields": {}
},
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
},
"typeVersion": 1
}
],
"active": true,
"settings": {
"executionOrder": "v1"
},
"versionId": "bea41962-3d87-4290-aefb-d16db2694a3f",
"connections": {
"If /memecoin": {
"main": [
[
{
"node": "Fetch Meme Coins",
"type": "main",
"index": 0
}
]
]
},
"Format Message": {
"main": [
[
{
"node": "Send to Telegram",
"type": "main",
"index": 0
}
]
]
},
"Fetch Meme Coins": {
"main": [
[
{
"node": "Format Message",
"type": "main",
"index": 0
}
]
]
},
"Telegram Trigger": {
"main": [
[
{
"node": "If /memecoin",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
telegramApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
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…
Source: https://n8n.io/workflows/5634/ — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Try on any outfit virtually - right inside Telegram. A user sends a person photo, then a garment photo (captioned ), and the bot replies with an AI-generated try-on result image using a dedicated Virt
A robust n8n workflow designed to enhance Telegram bot functionality for user management and broadcasting. It facilitates automatic support ticket creation, efficient user data storage in Redis, and a
Transform your digital payment business with a fully-featured Telegram bot that handles everything from product listings to transaction processing. Perfect for entrepreneurs looking to automate their
TGBot. Uses telegram, googleSheets, telegramTrigger, httpRequest. Event-driven trigger; 30 nodes.
This template provides a workflow to integrate a Telegram bot with NeurochainAI's inference capabilities, supporting both text processing and image generation. Follow these steps to get started: