Block 1 - Daily Schedule
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1.2
This workflow is provided as-is. Please review and test before using in production.
This n8n workflow automatically fetches the latest post from a Telegram channel, translates it using OpenAI, and republishes it to another channel. It supports text, images, and videos. Features Wo...
n8n-nodes-base.scheduletrigger, n8n-nodes-base.httprequest, n8n-nodes-base.html, n8n-nodes-base.code, @n8n/n8n-nodes-langchain.openai, n8n-nodes-base.if, n8n-nodes-base.telegram, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Shohani.
Original n8n.io sourceThis n8n workflow automatically fetches the latest post from a Telegram channel, translates it using OpenAI, and republishes it to another channel. It supports text, images, and videos.
Telegram Bot API
OpenAI API
Open the "Set Source Channel" node and modify:
sourceChannel: "channel_here", // Source channel username (without @)
targetChannel: "@your_channel_here", // Target channel (@channel or chat_id)
targetLanguage: "Persian", // Target language for translation
channelSignature: "signature text" // The channel signature to replaced
triggerAtHour and triggerAtMinute as neededModify the "Clean Post Content" node to remove specific text patterns:
let cleanPost = $input.first().json.post
.replaceAll('unwanted_text', '')
.replaceAll(/regex_pattern/g, '')
.trim();
To monitor multiple channels:
sourceChannel in each copyThe Schedule Trigger supports various patterns:
{ "triggerAtMinute": 0 }{ "triggerAtWeekday": 1, "triggerAtHour": 9 }No content fetched
Translation fails
Can't send to target channel
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Automatically copy & translate Telegram channel content with GPT-4o-mini |
|---|---|
| Complexity | advanced |
| Nodes | 19 |
| Categories | Social Media, Multimodal AI |
| Author | Shohani |
| Published | 30 Jul 2025 |
Use the JSON export at /data/workflows/6708/6708.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
This n8n workflow automatically fetches the latest post from a Telegram channel, translates it using OpenAI, and republishes it to another channel. It supports text, images, and videos. Features Wo...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Social Media, Multimodal AI use case.