CoinGecko トップコイン
中級
これはCrypto Trading, Miscellaneous, Multimodal AI分野の自動化ワークフローで、6個のノードを含みます。主にFunction, Telegram, HttpRequest, ManualTrigger, ScheduleTriggerなどのノードを使用。 CoinGeckoから自動のに人気の暗号通貨更新情報をTelegramに送稿
前提条件
- •Telegram Bot Token
- •ターゲットAPIの認証情報が必要な場合あり
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"id": "Vdw4Tf8R4PjaKrhY",
"meta": {
"instanceId": "db60d439c83d53c32b922f047b39f4dfd87d30483d18b101da16c1b43157d254",
"templateCredsSetupCompleted": true
},
"name": "coingecko-trending-coins",
"tags": [
{
"id": "YMlfkDxBLu4w294M",
"name": "Social Media",
"createdAt": "2025-05-29T13:15:57.213Z",
"updatedAt": "2025-05-29T13:15:57.213Z"
},
{
"id": "xx3Xp0KGbSjwly9W",
"name": "TG",
"createdAt": "2025-06-03T13:18:11.584Z",
"updatedAt": "2025-06-03T13:18:11.584Z"
}
],
"nodes": [
{
"id": "68e021b1-94d0-4eec-ba61-5639634e0e57",
"name": "トレンド取得",
"type": "n8n-nodes-base.httpRequest",
"position": [
-48,
48
],
"parameters": {
"url": "https://api.coingecko.com/api/v3/search/trending",
"options": {}
},
"typeVersion": 1
},
{
"id": "c0d4528a-fbe8-4da1-81a9-a3f3d6777ea8",
"name": "メッセージ整形",
"type": "n8n-nodes-base.function",
"position": [
192,
48
],
"parameters": {
"functionCode": "const trending = items[0].json.coins;\nlet message = \"🔥 Trending Crypto Searches on CoinGecko:\\n\\n\";\n\ntrending.forEach((coin, index) => {\n const item = coin.item;\n const name = item.name;\n const symbol = item.symbol.toUpperCase();\n const marketCapRank = item.market_cap_rank || 'N/A';\n const price = item.data && item.data.price ? `$${item.data.price.toFixed(4)}` : 'N/A';\n\n message += `${index + 1}. ${name} (${symbol}) - Price: ${price} - Market Cap Rank: ${marketCapRank}\\n`;\n});\n\nreturn [{ json: { message } }];\n"
},
"typeVersion": 1
},
{
"id": "7165e409-6d78-4b1e-b8ea-27f5554ec021",
"name": "Telegramメッセージ送信",
"type": "n8n-nodes-base.telegram",
"position": [
416,
48
],
"webhookId": "08c9ac49-d2f0-4dee-bb0b-da445d3aa9a7",
"parameters": {
"text": "={{$json[\"message\"]}}",
"chatId": "<CHAT-ID>",
"additionalFields": {}
},
"credentials": {
"telegramApi": {
"id": "VpqUd2VckywG6ivm",
"name": "TG-CC-Cryptofind"
}
},
"typeVersion": 1
},
{
"id": "156b6ef3-dd60-4c21-8d0c-a981c975f9d2",
"name": "ワークフロー実行時クリック",
"type": "n8n-nodes-base.manualTrigger",
"position": [
-256,
144
],
"parameters": {},
"typeVersion": 1
},
{
"id": "ff49644d-78c9-483a-9f6d-9b8f44d7697c",
"name": "付箋メモ",
"type": "n8n-nodes-base.stickyNote",
"position": [
-720,
-288
],
"parameters": {
"width": 416,
"height": 908,
"content": "**This workflow fetches the latest trending cryptocurrency searches from CoinGecko and automatically sends them to your Telegram group/channel.**\n\n\n✅ No account or API key required\n✅ Uses CoinGecko’s free public API\n✅ Sends formatted daily updates to Telegram\n✅ Easy to customize schedule with a Cron node\n\nPerfect for community managers, traders, or anyone who wants to keep their Telegram group updated with the hottest crypto trends.\n\n# How it works\n\n\n- Manual Trigger (for testing) & Schedule Trigger (runs automatically at set times)\n\n- Uses CoinGecko API https://api.coingecko.com/api/v3/search/trending\n\n- Extracts coin name, symbol, price (if available), and market cap rank\n\n- Formats into a readable Telegram message & \nsends the message to your configured group/channel\n\n# How to use\n\n - Import the workflow: Download the JSON file and import it into your n8n instance.\n\n- Connect your Telegram account: Add Telegram credentials in n8n using your Bot Token.\n\n- Replace the placeholder Telegram Chat ID (chatId) with your group/channel ID.\n\n- Adjust schedule (optional): By default, the workflow runs at 8:30 AM and 8:30 PM IST. You can change this in the Schedule Trigger node.\n\n- Activate the workflow: Once configured, activate it, and your Telegram group will start receiving daily trending coin updates.\n\n# Requirements\n\n- An n8n instance (self-hosted or cloud)\n\n- A Telegram Bot Token (create via BotFather)\n\n- Telegram Group or Channel ID where messages should be sent\n"
},
"typeVersion": 1
},
{
"id": "fe43a733-c51a-4dd4-96e3-b67a96aceb12",
"name": "IST 8:30 AM/PM",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-256,
-64
],
"parameters": {
"rule": {
"interval": [
{
"triggerAtHour": 20,
"triggerAtMinute": 30
},
{
"triggerAtHour": 8,
"triggerAtMinute": 30
}
]
}
},
"typeVersion": 1.2
}
],
"active": false,
"pinData": {},
"settings": {
"timezone": "Asia/Kolkata",
"callerPolicy": "workflowsFromSameOwner",
"executionOrder": "v1"
},
"versionId": "ff2882ce-33d1-4862-a61a-2d65863a96f6",
"connections": {
"68e021b1-94d0-4eec-ba61-5639634e0e57": {
"main": [
[
{
"node": "c0d4528a-fbe8-4da1-81a9-a3f3d6777ea8",
"type": "main",
"index": 0
}
]
]
},
"fe43a733-c51a-4dd4-96e3-b67a96aceb12": {
"main": [
[
{
"node": "68e021b1-94d0-4eec-ba61-5639634e0e57",
"type": "main",
"index": 0
}
]
]
},
"c0d4528a-fbe8-4da1-81a9-a3f3d6777ea8": {
"main": [
[
{
"node": "7165e409-6d78-4b1e-b8ea-27f5554ec021",
"type": "main",
"index": 0
}
]
]
},
"156b6ef3-dd60-4c21-8d0c-a981c975f9d2": {
"main": [
[
{
"node": "68e021b1-94d0-4eec-ba61-5639634e0e57",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - 仮想通貨取引, その他, マルチモーダルAI
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
ビットコインとイーサリアムの下落アラート(Telegram、Slack、SMS)
Telegram、Slack、SMS 経由でビットコインとイーサリアムの下落アラートを送信
If
Code
Slack
+
If
Code
Slack
8 ノードDavid Olusola
仮想通貨取引
自動化 B2B リード生成:Google Places、Scrape.do、AI によるデータ強化
自動 B2B リード生成:Google Places、Scrape.do と AI によるデータ強化
If
Set
Html
+
If
Set
Html
19 ノードOnur
その他
Uniswap V3 レンジトレーダー (バージョン 2)
Uniswap V3、Telegramアラート、MetaMaskdelegationを使用した自動インデックス取引
If
Code
Switch
+
If
Code
Switch
41 ノード1Shot API
その他
暗号資産市場分析とChart-img、BrowserAI、GPTの洞察をTelegramへ送信
Chart-img、BrowserAI、GPTインサイトを使用した暗号市場分析をTelegramに送信
Code
Wait
Merge
+
Code
Wait
Merge
34 ノードAlex Gurinovich
その他
暗号資産 RSI アラートシステム(EODHD、Telegram、TradingView チャート付き)
暗号資産の RSI アラート システム(EODHD、Telegram、TradingView と統合)
If
Set
Code
+
If
Set
Code
15 ノードKevin
仮想通貨取引
毎日のMLB投手対バッター対戦分析(Google Sheets + Telegram)
Google シートとTelegramを使用したMLBピッチャー対バッティングマッチアップ分析毎日
Code
Telegram
Http Request
+
Code
Telegram
Http Request
14 ノードTheStock
その他