Sign In

@topvisor/n8n-nodes-telegram-send-message-custom

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@topvisor/n8n-nodes-telegram-send-message-custom

Telegram Send Message with custom JSON

latest
npmnpm
Version
1.0.4
Version published
Weekly downloads
7
250%
Maintainers
1
Weekly downloads
 
Created
Source

🤖 n8n-nodes-telegram-send-message-custom

Differences from the standard Telegram node in n8n:

  • 📝 You can provide any data supported by the Telegram API without limitations
    • either manually as a JSON string or as an object
    • or using variables obtained from previous steps
  • 🔀 Supports multiple Telegram methods via Operation select
    • sendMessage
    • sendPhoto
  • 🔍 The Output panel displays raw API request/response data, making debugging more transparent and straightforward

🚀 Custom n8n node to send Telegram messages using telegramApi credentials with custom JSON.

For example, adding custom reply_markup in JSON (inline keyboard, reply keyboard etc):

{
  "reply_markup": {
    "inline_keyboard": [
      [
        {
          "text": "🌐 Open Website",
          "url": "https://example.com"
        }
      ],
      [
        {
          "text": "✅ Confirm",
          "callback_data": "confirm_action"
        }
      ]
    ]
  }
}

📚 See the official Telegram Bot API docs.

⚙️ Install

In n8n:
Settings → Community Nodes → Install → @topvisor/n8n-nodes-telegram-send-message-custom

🛠️ Usage

  • ➕ Add this node in workflow
  • 🔑 Select your Telegram API credentials
  • 🔀 Choose Operation (Send Message or Send Photo)
  • 💬 Fill base fields (Chat ID, Text / Photo)
  • 🧩 Paste raw JSON into Custom JSON (supports expressions)

Keywords

n8n

FAQs

Package last updated on 15 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts