Monedas populares de CoinGecko

Intermedio

Este es unCrypto Trading, Miscellaneous, Multimodal AIflujo de automatización del dominio deautomatización que contiene 6 nodos.Utiliza principalmente nodos como Function, Telegram, HttpRequest, ManualTrigger, ScheduleTrigger. Empuje automático de actualizaciones de criptomonedas populares a Telegram desde CoinGecko

Requisitos previos
  • Bot Token de Telegram
  • Pueden requerirse credenciales de autenticación para la API de destino
Vista previa del flujo de trabajo
Visualización de las conexiones entre nodos, con soporte para zoom y panorámica
Exportar flujo de trabajo
Copie la siguiente configuración JSON en n8n para importar y usar este flujo de trabajo
{
  "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": "Obtener Tendencias",
      "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": "Formatear Mensaje",
      "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": "Enviar Mensaje 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": "Al hacer clic en 'Ejecutar flujo de trabajo'",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        -256,
        144
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "ff49644d-78c9-483a-9f6d-9b8f44d7697c",
      "name": "Nota Adhesiva",
      "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
          }
        ]
      ]
    }
  }
}
Preguntas frecuentes

¿Cómo usar este flujo de trabajo?

Copie el código de configuración JSON de arriba, cree un nuevo flujo de trabajo en su instancia de n8n y seleccione "Importar desde JSON", pegue la configuración y luego modifique la configuración de credenciales según sea necesario.

¿En qué escenarios es adecuado este flujo de trabajo?

Intermedio - Comercio de criptomonedas, Varios, IA Multimodal

¿Es de pago?

Este flujo de trabajo es completamente gratuito, puede importarlo y usarlo directamente. Sin embargo, tenga en cuenta que los servicios de terceros utilizados en el flujo de trabajo (como la API de OpenAI) pueden requerir un pago por su cuenta.

Información del flujo de trabajo
Nivel de dificultad
Intermedio
Número de nodos6
Categoría3
Tipos de nodos6
Descripción de la dificultad

Adecuado para usuarios con experiencia intermedia, flujos de trabajo de complejidad media con 6-15 nodos

Enlaces externos
Ver en n8n.io

Compartir este flujo de trabajo

Categorías

Categorías: 34