🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Telegram + Blotato: publish short videos everywhere

Lisa Granqvist Partner Workflow Automation Expert

Posting a short video is never “just posting.” It’s exporting, rendering, writing a caption, resizing, re-uploading, then doing it again for every platform. And the worst part is how easy it is to lose track of what went where.

This Telegram Blotato automation hits social media managers hardest, but founders doing their own marketing and small teams running client accounts feel it too. You get a repeatable way to go from a single Telegram message to a finished video, ready captions, and posts across nine channels.

Below, you’ll see exactly what the workflow does, what you need to run it, and how the moving parts fit together so you can ship more content without living in upload screens.

How This Automation Works

Here’s the complete workflow you’ll be setting up:

n8n Workflow Template: Telegram + Blotato: publish short videos everywhere

Why This Matters: Multi-platform posting eats your week

You can have a great idea and still lose the day to production and distribution. One tool generates a video, another adds music, something else handles text overlays, and then you’re juggling caption formats and title lengths for each platform. If you’re doing this manually, you’re also babysitting downloads, re-uploads, and “where did I save that final version?” moments. It’s not just time. It’s mental clutter, broken momentum, and inconsistency that shows up as missed posting days. Honestly, that inconsistency is what kills growth.

It adds up fast. Here’s where it breaks down in real workflows.

  • You end up rendering the same content multiple times because each platform wants a slightly different upload or format.
  • Captions and titles get rushed, which means weaker hooks and more edits after publishing.
  • Manual uploading across nine platforms can burn about 2 hours per video when you include switching accounts and adding details.
  • No central log of posted URLs makes reporting feel like detective work at the end of the week.

What You’ll Build: Telegram-driven video creation + auto-publishing to 9 platforms

This workflow turns Telegram into your content command center. You send a text prompt or an image prompt to a Telegram bot, and the automation decides what to do with it. If it’s an image, it fetches the file, uploads it to Cloudinary, and converts it into a video source. If it’s text-only, it goes straight into video generation via Blotato (and optionally Kling, depending on your setup). Then it creates music with Piapi, merges the audio with the video, and uses GPT‑4 to write on-screen text plus a platform-ready caption and SEO-friendly title. Finally, it posts the finished video through Blotato to nine platforms and logs the title, caption, and URL in Google Sheets so you always have a clean record.

The workflow starts with a Telegram message. AI handles overlays, captions, and titles while the video and music are rendered in the background. At the end, you receive the final video back in Telegram, your posts go live across your selected channels, and Google Sheets becomes your reporting hub.

What You’re Building

Expected Results

Say you publish one short video a day to 9 platforms. Manually, even a “quick” workflow is maybe 10 minutes per platform once you include uploads, captions, and double-checking accounts, so you’re at about 90 minutes daily. With this automation, you spend about 2 minutes sending the Telegram prompt, then wait roughly 30 minutes while video, music, and overlays render and posts publish. That’s about an hour back each day, and your links are already logged in Sheets.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Telegram Bot to receive prompts and send results.
  • Blotato to generate and publish videos to platforms.
  • OpenAI API key (get it from your OpenAI dashboard)

Skill level: Intermediate. You’ll be connecting APIs, setting account IDs, and running a self-hosted n8n instance because this workflow uses community nodes.

Want someone to build this for you? Talk to an automation expert (free 15-minute consultation).

Step by Step

A Telegram message triggers everything. You send either a text prompt or an image prompt to your Telegram bot. The workflow parses the input and decides which generation route to use.

The workflow prepares media sources. If you sent an image, it fetches the file from Telegram, uploads it to Cloudinary, and transforms it into a video. If you sent text only, it kicks off a Blotato video render. In both cases, n8n waits for rendering to complete and then retrieves the final media link.

AI writes the parts you normally rush. GPT‑4 drafts overlay lines (split into clean, timed segments), generates a social caption, and composes a more SEO-friendly title you can reuse across channels. You can keep it generic, but you will get better results once you add your brand voice.

Publishing and logging happen automatically. The workflow fuses music into the video, sends the final video back to Telegram, pushes the post to nine platforms through Blotato, and appends Title, Caption, and URL to Google Sheets for reporting.

You can easily modify the platform list to publish only where you care about, and adjust the caption style to match each channel. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Telegram Trigger

Set up the Telegram entry point so users can send text prompts or images to start the video pipeline.

  1. Add and configure Telegram Input Trigger to listen for updates set to message.
  2. Credential Required: Connect your telegramApi credentials in Telegram Input Trigger.
  3. Verify the workflow starts with Telegram Input TriggerParse Prompt or Image.
Tip: Ensure your bot has permission to read messages and images in the Telegram chat you’re using.

Step 2: Parse Input and Route by Mode

Split the incoming Telegram message into video prompt, caption idea, and music style, then route based on text vs. image input.

  1. In Parse Prompt or Image, keep the provided JavaScript to parse videoPrompt, captionIdea, and musicStyle.
  2. In Check Input Mode, confirm the condition uses {{ $('Telegram Input Trigger').item.json.message.text }} with operator set to notEmpty.
  3. Confirm routing: Check Input Mode branches to Create Blotato Video (text-based) and Fetch Telegram Image (image-based).
⚠️ Common Pitfall: If you send only an image without a caption, Parse Prompt or Image may not find text to parse. Include a caption like generate video: prompt, caption idea, music style.

Step 3: Configure Image-to-Video and Music Generation

Prepare the image pipeline and the music creation chain before composing the final video.

  1. In Fetch Telegram Image, set fileId to {{ $('Telegram Input Trigger').item.json.message.photo[3].file_id }} and resource to file.
  2. Credential Required: Connect your telegramApi credentials in Fetch Telegram Image.
  3. In Retrieve Image File Link, set url to https://api.telegram.org/file/bot_[CONFIGURE_YOUR_TOKEN]/{{ $('Fetch Telegram Image').item.json.result.file_path }}.
  4. In Send Image to Cloudinary, set url to https://api.cloudinary.com/v1_1/dc5wapno3/image/upload with contentType multipart-form-data and upload_preset n8n_video.
  5. Credential Required: Connect your httpBasicAuth credentials in Send Image to Cloudinary.
  6. In Transform Image into Video, keep the JSON body using {{ $('Parse Prompt or Image').item.json.videoPrompt }} and {{ $json.secure_url }}.
  7. Credential Required: Connect your httpBasicAuth and httpHeaderAuth credentials in Transform Image into Video.
  8. In Pause for Image Render, set unit to minutes and amount to 2, then in Fetch Image Video Link use https://api.piapi.ai/api/v1/task/{{ $json.data.task_id }}.
  9. Credential Required: Connect your httpHeaderAuth credentials in Fetch Image Video Link.
  10. In Create Music via Piapi, keep style_prompt as {{ $('Parse Prompt or Image').item.json.musicStyle }}.
  11. Credential Required: Connect your httpHeaderAuth credentials in Create Music via Piapi and Fetch Music File Link.
  12. In Pause for Music Render, set unit to minutes and amount to 2, then in Fetch Music File Link set url to https://api.piapi.ai/api/v1/task/{{ $json.data.task_id }}.
⚠️ Common Pitfall: Retrieve Image File Link contains bot_[CONFIGURE_YOUR_TOKEN]. Replace this with your real Telegram bot token.

Step 4: Set Up AI Copy Generation and Video Fusion

Generate overlay text, captions, and a YouTube title using AI, then fuse video, text, and music.

  1. In Draft Overlay Script, ensure the prompt uses {{ $('Parse Prompt or Image').first().json.captionIdea }} and the model is set to gpt-4o-mini.
  2. Credential Required: Connect your openAiApi credentials in Draft Overlay Script.
  3. Keep the parsing logic in Separate Script Lines to split output into text1 and text2.
  4. In Fuse Video and Music, verify url is https://api.json2video.com/v2/movies and src points to {{ $('Combine Video Sources').item.json.url_video }} with audio {{ $('Fetch Music File Link').item.json.data.output.audio_url }}.
  5. Credential Required: Connect your httpCustomAuth credentials in Fuse Video and Music and Retrieve Final Video Link.
  6. In Wait for Fusion Finish, set unit to minutes and amount to 1, then use Retrieve Final Video Link with https://api.json2video.com/v2/movies?id={{ $json.project }}.
  7. In Craft Social Caption and Compose SEO Title, keep the prompt using {{ $('Parse Prompt or Image').first().json.captionIdea }} and the model gpt-4o-mini.
  8. Credential Required: Connect your openAiApi credentials in Craft Social Caption and Compose SEO Title.
Tip: If AI output formats change, Separate Script Lines will throw an error. Keep output strictly formatted as text1: and text2:.

Step 5: Store Output and Notify Telegram

Save the final assets in Google Sheets and send a Telegram confirmation plus the rendered video back to the user.

  1. In Append Data to Sheet, set operation to append and map fields: url to {{ $('Retrieve Final Video Link').item.json.movie.url }}, Title to {{ $json.message.content }}, and caption to {{ $('Craft Social Caption').item.json.message.content }}.
  2. Credential Required: Connect your googleSheetsOAuth2Api credentials in Append Data to Sheet.
  3. In Notify Telegram with Video, keep text as Here's your scheduled video: ... and chatId as {{ $('Telegram Input Trigger').first().json.message.chat.id }}.
  4. Credential Required: Connect your telegramApi credentials in Notify Telegram with Video and Send Video via Telegram.
  5. In Send Video via Telegram, set operation to sendVideo, file to {{ $('Append Data to Sheet').item.json['url '] }}, and chatId to {{ $json.result.chat.id }}.

Step 6: Configure Blotato Publishing and Parallel Social Posts

Publish the finished video to multiple social platforms via Blotato, using parallel execution.

  1. In Set Blotato Platform IDs, replace all [YOUR_ID] placeholders with your actual Blotato account and platform IDs.
  2. In Send Video to Blotato, keep url as https://backend.blotato.com/v2/media and set body param url to {{ $('Append Data to Sheet').item.json['url '] }}.
  3. Send Video to Blotato outputs to both Publish to Instagram and Publish to YouTube and Publish to TikTok and Publish to Facebook Page and Publish to Threads and Publish to Twitter X and Publish to LinkedIn and Publish to Bluesky and Publish to Pinterest in parallel.
  4. Verify each publish node’s JSON body points to IDs from Set Blotato Platform IDs and captions from Append Data to Sheet, e.g., {{ $('Append Data to Sheet').item.json.caption }}.
⚠️ Common Pitfall: All Blotato HTTP nodes require the blotato-api-key header. Add the header or configure credentials manually in Send Video to Blotato, Create Blotato Video, Retrieve Blotato Video Link, and all Publish to ... nodes.

Step 7: Test & Activate Your Workflow

Validate end-to-end execution and enable the workflow for production use.

  1. Click Execute Workflow and send a Telegram message to your bot with a prompt like generate video: travel tip, packing hack, chill beats.
  2. Confirm successful runs: a final video URL in Append Data to Sheet and a Telegram message from Notify Telegram with Video.
  3. Check that social posts are created after Send Video to Blotato triggers the parallel publish nodes.
  4. Once verified, toggle the workflow to Active to run continuously.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Blotato credentials can expire or the account IDs can be wrong. If posting fails, check your Blotato API key and the platform-specific account IDs in the “Set Blotato Platform IDs” step first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Quick Answers

What’s the setup time for this Telegram Blotato automation automation?

Plan for about 60–90 minutes if you already have all API keys.

Is coding required for this publish short videos automation?

No. You’ll mostly paste API keys, map a few fields, and test with sample Telegram prompts.

Is n8n free to use for this Telegram Blotato automation workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in OpenAI API costs plus whatever Blotato, Piapi, and media hosting cost for your volume.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I modify this Telegram Blotato automation workflow for different use cases?

Yes, and you probably should. You can add an approval gate by inserting a Telegram “confirm” step right before “Send Video to Blotato,” so nothing publishes until you reply. You can also disable platforms by removing the HTTP Request publish nodes you don’t need (like Bluesky or Pinterest), and tweak the “Craft Social Caption” and “Compose SEO Title” prompts to match your brand voice and CTA style. If you want heavier branding, change text styling in the JSON2Video part so overlays match your fonts and colors.

Why is my Blotato connection failing in this workflow?

Usually it’s an invalid API key or a mismatched platform account ID in the “Set Blotato Platform IDs” step. Double-check that the Blotato project has access to the channels you’re trying to post to, then re-run a single-platform test (Instagram only, for example) before turning everything back on. Rate limits can also show up if you trigger a lot of renders back-to-back, so spacing runs out a bit helps.

What volume can this Telegram Blotato automation workflow process?

On a typical self-hosted setup, you can run as many executions as your server can handle, but video generation APIs will be your real bottleneck. Practically, most teams start with a handful of videos per day and scale up once waits, retries, and costs are dialed in. If you use n8n Cloud, your monthly execution limit depends on the plan.

Is this Telegram Blotato automation automation better than using Zapier or Make?

Often, yes, because this workflow has branching logic (text vs image), multiple “wait for render” stages, and a lot of HTTP calls that get awkward and expensive in simpler tools. n8n also gives you self-hosting, which matters when you’re running frequent jobs. Zapier or Make can still work if you only want “message in, post out” with minimal processing and you’re fine paying for volume. The moment you need multi-step rendering checks, retries, and richer AI prompting, n8n tends to feel more controllable. Talk to an automation expert if you want help choosing.

Once this is running, publishing stops being a separate job you dread. The workflow handles the repetitive parts so you can focus on better ideas and stronger series.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal