CoinGecko Top-Münzen

Fortgeschritten

Dies ist ein Crypto Trading, Miscellaneous, Multimodal AI-Bereich Automatisierungsworkflow mit 6 Nodes. Hauptsächlich werden Function, Telegram, HttpRequest, ManualTrigger, ScheduleTrigger und andere Nodes verwendet. Automatisierte Push-Benachrichtigung über beliebte Kryptowährungs-Updates von CoinGecko zu Telegram

Voraussetzungen
  • Telegram Bot Token
  • Möglicherweise sind Ziel-API-Anmeldedaten erforderlich
Workflow-Vorschau
Visualisierung der Node-Verbindungen, mit Zoom und Pan
Workflow exportieren
Kopieren Sie die folgende JSON-Konfiguration und importieren Sie sie in 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": "Trends abrufen",
      "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": "Nachricht formatieren",
      "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 Nachricht senden",
      "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": "Bei Klick auf 'Workflow ausführen'",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        -256,
        144
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "ff49644d-78c9-483a-9f6d-9b8f44d7697c",
      "name": "Haftnotiz",
      "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": "8:30 AM/PM IST",
      "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
          }
        ]
      ]
    }
  }
}
Häufig gestellte Fragen

Wie verwende ich diesen Workflow?

Kopieren Sie den obigen JSON-Code, erstellen Sie einen neuen Workflow in Ihrer n8n-Instanz und wählen Sie "Aus JSON importieren". Fügen Sie die Konfiguration ein und passen Sie die Anmeldedaten nach Bedarf an.

Für welche Szenarien ist dieser Workflow geeignet?

Fortgeschritten - Krypto-Handel, Verschiedenes, Multimodales KI

Ist es kostenpflichtig?

Dieser Workflow ist völlig kostenlos. Beachten Sie jedoch, dass Drittanbieterdienste (wie OpenAI API), die im Workflow verwendet werden, möglicherweise kostenpflichtig sind.

Workflow-Informationen
Schwierigkeitsgrad
Fortgeschritten
Anzahl der Nodes6
Kategorie3
Node-Typen6
Schwierigkeitsbeschreibung

Für erfahrene Benutzer, mittelkomplexe Workflows mit 6-15 Nodes

Externe Links
Auf n8n.io ansehen

Diesen Workflow teilen

Kategorien

Kategorien: 34