Repurpose TikTok Videos to Multiple Social Platforms Automatically

Repurpose TikTok Videos to Multiple Social Platforms Automatically

This workflow automatically detects when you publish a new TikTok video, downloads it without a watermark, stores it in Google Drive, and reposts it to up to eight different social media platforms — all on autopilot. It's designed for content creators who want to maximize their reach across platforms without manually uploading the same video multiple times.

The workflow uses an RSS feed to monitor your TikTok profile for new videos. When a new video is detected, it fetches the TikTok page HTML, extracts the direct video URL from the embedded JSON data, downloads the video file, saves it to Google Drive, uploads it to Blotato's media storage, and then publishes it to Instagram, YouTube, Facebook, LinkedIn, Twitter/X, Threads, Pinterest, and Bluesky simultaneously. Error handling is built in so that if one platform fails, the others continue.

Node-by-Node Breakdown

  1. RSS Feed Trigger (No auth) — Polls an RSS.app feed URL every minute to detect new TikTok videos. Configured with a specific RSS feed URL that monitors your TikTok profile. The feed URL must be generated from RSS.app.

  2. Get Tiktok Page (No auth) — Makes an HTTP GET request to the TikTok video URL (extracted from the RSS feed item's link field). Sends a custom User-Agent header to mimic a browser. Returns the full HTML response as text.

  3. Get Video URL (No auth) — A Code node that runs JavaScript to parse the HTML response. It extracts the __UNIVERSAL_DATA_FOR_REHYDRATION__ script tag, parses the JSON, and retrieves the video's playAddr (direct video URL). Also captures cookies from the response headers for authentication.

  4. Get Video (No auth) — Makes an HTTP GET request to the extracted video URL to download the actual video file. Sends browser-like headers including User-Agent, Referer, Accept, Accept-Language, and the cookies from the previous step. Returns the video as a binary file.

  5. Upload to Google Drive (OAuth2) — Saves the downloaded video file to a specified Google Drive folder. The filename is set to the RSS feed item's title with .mp4 extension. Requires Google Drive OAuth2 credentials.

  6. Upload media (API Key auth — Blotato) — Uploads the video from Google Drive to Blotato's media storage using a public Google Drive download URL. This makes the video accessible to Blotato's posting API. Requires Blotato API credentials.

  7. Instagram [BLOTATO] (API Key auth — Blotato) — Posts the video to Instagram using Blotato's API. Uses the RSS feed title as the caption. Connected to a specific Blotato account (sabrina_ramonov).

  8. Youtube [BLOTATO] (API Key auth — Blotato) — Posts the video to YouTube. Uses the RSS feed title (truncated to 100 characters) as the video title and caption.

  9. Facebook [BLOTATO] (API Key auth — Blotato) — Posts the video to a Facebook page (Blotato page). Uses the RSS feed title as the post text.

  10. Linkedin [BLOTATO] (API Key auth — Blotato) — Posts the video to LinkedIn. Uses the RSS feed title as the post text.

  11. Twitter [BLOTATO] (API Key auth — Blotato) — Posts the video to Twitter/X. Uses the RSS feed title truncated to 280 characters as the tweet text.

  12. Threads [BLOTATO] (API Key auth — Blotato) — Posts the video to Threads. Uses the RSS feed title truncated to 500 characters.

  13. Pinterest [BLOTATO] (API Key auth — Blotato) — Posts the video to Pinterest. Uses the RSS feed title as the pin description.

  14. Bluesky [BLOTATO] (API Key auth — Blotato) — Posts the video to Bluesky. Uses the RSS feed title truncated to 280 characters. Has a scheduled time set for October 31, 2025.

  15. Merge1 (No auth) — Merges the error outputs from all Blotato nodes into a single output for centralized error handling.

Setup Instructions

Prerequisites

  1. RSS.app account — Sign up at rss.app. Create a new feed by entering your TikTok profile URL. Configure the feed to output only 1 post (set "Number of Posts" to 1). Copy the generated RSS feed URL.
  2. Google Drive — You need a Google account with Google Drive enabled. Create a folder where videos will be stored.
  3. Blotato account — Sign up at blotato.com. Go to Dashboard → API Keys to create an API key. Connect your social media accounts (Instagram, YouTube, Facebook, LinkedIn, Twitter/X, Threads, Pinterest, Bluesky) to Blotato.
  4. n8n — This workflow requires n8n with "Verified Community Nodes" enabled. Install the "Blotato" community node from the n8n marketplace.

Configuration Steps

  1. Replace the RSS feed URL in the RSS Feed Trigger node with your own RSS.app feed URL.
  2. Configure Upload to Google Drive:
    • Create a Google Drive OAuth2 credential in n8n
    • Select the parent drive and folder where videos should be saved
  3. Configure Upload media and all Blotato nodes:
    • Create a Blotato credential using your API key
    • For each platform node, select the correct Blotato account (the social account you connected in Blotato)
    • For Facebook, also select the Facebook page ID
  4. (Optional) Adjust the polling interval in the RSS Feed Trigger node — it's currently set to every minute, which is very frequent. Consider changing to every 30 minutes or hourly.

Use Cases and Variations

Primary Use Case

  • Content repurposing: Automatically cross-post TikTok videos to all major social platforms without manual effort.

Variations

  • Customize captions per platform: Add a Code node before each Blotato node to modify the caption text for each platform (e.g., add hashtags for Instagram, shorten for Twitter).
  • Add scheduling: Use Blotato's "Scheduled Time" option in each node to schedule posts for optimal times rather than posting immediately.
  • Filter by hashtag or topic: Add a Filter node after the RSS trigger to only repost videos containing specific keywords or hashtags.
  • Add thumbnail generation: Insert a node to generate a custom thumbnail for YouTube or Pinterest.
  • Remove platforms: Simply delete the Blotato nodes for platforms you don't use.
  • Add error notifications: Connect the Merge1 node to a Slack or email node to alert you when a post fails.
  • Use with other video sources: Replace the TikTok RSS feed with an RSS feed from YouTube, Instagram Reels, or any other video platform that supports RSS.

Important Notes

  • Do not post the same video repeatedly to the same platform — it will be flagged as spam.
  • If using AI-generated avatars, ensure you disclose AI content as required by platform policies.
  • Test with one platform first before enabling all eight.
  • Monitor the Blotato API dashboard at my.blotato.com/api-dashboard for errors.
23 nodesmanual triggerSocial Media
Sticky NoteHTTP RequestCodeGoogle DriveBlotatoMerge

Workflow JSON

{
  "id": "k4OOOtn0KfZuohl9",
  "meta": {
    "instanceId": "e232d38e020fdf3e4c5aac7fdf84cd849e91ffb2c1ad80af1a4b16753ff64418",
    "templateCredsSetupCompleted": true
  },
  "name": "8 Repurpose Tiktoks On Autopilot",
  "tags": [],
  "nodes": [
    {
      "id": "2cded6ff-5c8e-4a2e-924b-6445877adcff",
      "name": "Sticky Note",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1712,
        768
      ],
      "parameters": {
        "color": 5,
        "width": 1376,
        "height": 452,
        "content": "# 1. RSS Feed Triggers on New Tiktok Video"
      },
      "typeVersion": 1
    },
    {
      "id": "5f99eb6d-7183-4b14-bfc7-92ed3493c055",
      "name": "Get Tiktok Page",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        -1280,
        880
      ],
      "parameters": {
        "url": "={{ $('RSS Feed Trigger').item.json.link }}",
        "options": {
          "response": {
            "response": {
              "fullResponse": true,
              "responseFormat": "text"
            }
          }
        },
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "User-Agent",
              "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/91.0.4472.124"
            }
// ... truncated (copy to see full JSON)

How to Import This Workflow

  1. 1Copy the workflow JSON above using the Copy Workflow JSON button.
  2. 2Open your n8n instance and go to Workflows.
  3. 3Click Import from JSON and paste the copied workflow.

Don't have an n8n instance? Start your free trial at n8nautomation.cloud

Related Templates

AI Viral Video Creator from Telegram with Voice & Multi-Platform Posting

🚀 Automatically Generate and Publish Viral TikTok-Style Videos from a Simple Telegram Message This workflow transforms a single Telegram message containing a photo and a theme (caption) into a fully-produced, AI-generated talking-head video optimized for viral social media content. It leverages Perplexity for trend research, OpenAI GPT-4 for script and caption generation, ElevenLabs for realistic voice synthesis, and FAL.ai's VEED Fabric model to create a lip-synced avatar video from the photo. The final video, along with an engaging caption and relevant hashtags, is saved to Google Sheets for tracking and then automatically published to up to nine social media platforms—TikTok, YouTube, Instagram, LinkedIn, Facebook, Twitter (X), Threads, Pinterest, and Bluesky—via the Blotato integration. This is an end-to-end content creation pipeline perfect for creators, marketers, and businesses who want to maintain a consistent, high-frequency posting schedule without manual video editing. It reduces the time from idea to published video to under 5 minutes. 📋 Node-by-Node Breakdown Telegram Trigger (Telegram Bot Token) — Listens for incoming messages containing a photo and caption. The trigger activates on updates. No additional filtering is applied; every photo with a caption will start the workflow. Workflow Configuration (No auth) — A static Set node that stores API keys and configuration values (ElevenLabs API key, voice ID, FAL API key, and the Perplexity model name) as workflow variables for easy maintenance. Extract Photo and Theme (No auth) — Extracts the largest photo file ID from the Telegram message and the caption (or text) as the theme. Falls back to "viral content" if no caption is provided. Get Photo File from Telegram (Telegram Bot Token) — Uses the Telegram Bot API to download the photo file specified by the file ID extracted in the previous step. Build Public Image URL (No auth) — Uploads the downloaded photo to to obtain a publicly accessible URL. This URL is later used by FAL.ai's VEED Fabric model. Search Trends with Perplexity (Perplexity API key) — Sends a query to Perplexity AI asking for the top 3 current viral trends related to the user's theme. The model is configured dynamically from the workflow configuration node. Generate Script with GPT-4 (OpenAI API key) — Uses OpenAI GPT-4o-mini to generate a 30-second TikTok script based on the trends found by Perplexity and the original theme. The prompt enforces a hook in the first 2 seconds and conversational tone. ElevenLabs Voice Synthesis (API key in header) — Sends the generated script to ElevenLabs' text-to-speech API with the configured voice ID, producing an MP3 audio file. Uses header for authentication. Convert .mpga to .mp3 (No auth) — A JavaScript Code node that renames the binary audio file from to and sets the correct MIME type, ensuring compatibility with downstream nodes. Upload Audio to Public URL (No auth) — Uploads the MP3 audio to to make it publicly accessible for FAL.ai. FAL.ai Video Generation (API key in header) — Sends a request to FAL.ai's VEED Fabric 1.0 endpoint with the public image URL and audio URL to generate a talking-head lip-sync video at 480p resolution. Authentication uses the header with the FAL API key. Wait for VEED (No auth) — A Wait node that pauses execution for 10 minutes to allow the video generation to complete. The node uses polling via webhook (not active here) but is configured as a timed wait. Download VEED Video (API key in header) — Periodically queries the FAL.ai request status endpoint (using the request ID from the generation response) to retrieve the completed video URL. Generate Caption with GPT-4 (OpenAI API key) — A second OpenAI node that creates an engaging TikTok caption with trending hashtags based on the same theme and trends. Outputs only the caption text. Save to Google Sheets (Google Sheets OAuth2) — Appends a new row to a Google Sheet with columns: IDEA (original theme), CAPTION, AUDIO URL, IMAGE URL, VIDEO URL. The sheet and document ID are expected to be configured via resource locator or expression. Send a video (Telegram Bot Token) — Sends the generated video back to the original Telegram chat as a confirmation. Upload Video to BLOTATO (Blotato API key) — Uploads the video file to Blotato's media storage, obtaining a hosted URL for distribution. TikTok / YouTube / LinkedIn / Facebook / Instagram / Twitter (X) / Threads / Bluesky / Pinterest (Blotato API key) — Nine parallel Blotato nodes that each publish the video to their respective social media accounts. Each node uses pre-configured account IDs (list mode) and the generated caption. YouTube optionally sets the video to "private" and disables subscriber notifications. Merge1 (No auth) — A Choose Branch merge node that waits for all nine social media publishing branches to complete before continuing. Update Status to "DONE" (Google Sheets OAuth2) — Updates the corresponding row in the Google Sheet (matched by video URL) to set the STATUS column to "DONE". 🔧 Setup Instructions To use this workflow, you'll need the following accounts and API keys: Telegram — Create a bot via @BotFather and get the bot token. Use it in the Telegram Trigger and Telegram nodes. ElevenLabs — Sign up at elevenlabs.io, generate an API key, and clone or select a voice. Note the Voice ID. FAL.ai — Sign up at fal.ai, create an API key from the dashboard. The workflow uses the VEED Fabric 1.0 model – no separate VEED subscription is needed. Perplexity AI — Sign up at perplexity.ai, get an API key from settings. OpenAI — Sign up at platform.openai.com, create an API key with access to GPT-4o-mini. Google Sheets — Create a Google Sheet with the required columns (IDEA, URL IMAGE, URL AUDIO, URL VIDEO, CAPTION, STATUS). Set up Google Sheets OAuth2 credentials in n8n. Blotato — Sign up at blotato.com, get an API key from settings. Install the community node in n8n (Settings → Community Nodes). Connect each social media account within Blotato to obtain account IDs. tmpfiles.org — No account required; the service is used for temporary file hosting. After obtaining all keys, update the Workflow Configuration node with your values and configure credentials for each API node (Telegram, Perplexity, OpenAI, Google Sheets, Blotato). The sticky notes in the canvas provide step-by-step visual guidance. 💡 Use Cases & Variations Content Repurposing: The workflow can be adapted to repurpose a blog post or article into a short video by feeding the text as a theme. Brand Voice: Customize the ElevenLabs voice to match your brand's tone. Trend-Driven Campaigns: Use Perplexity with different prompts to focus on niche topics (e.g., "tech startups", "healthy recipes"). Platform-Specific Formatting: Modify the caption generation prompt to include platform-specific elements (e.g., LinkedIn professional tone, Twitter character limit). Scheduling: Add a Schedule Trigger to run the workflow periodically with pre-defined themes from a spreadsheet instead of Telegram. Analytics: Extend the Google Sheet with additional columns for engagement metrics by integrating with social media analytics APIs. This workflow is fully modular; you can remove any of the Blotato publishing nodes if you only need specific platforms.

35 nodes

Generate Videos & Carousels with Blotato, Publish to Instagram & TikTok

Overview This workflow creates a fully autonomous AI-powered social media content pipeline. It listens for incoming Telegram messages containing a public URL (YouTube video, article, Instagram post, etc.) and a target platform (Instagram or TikTok). The AI agent then extracts the content, generates a custom visual using Blotato's AI tools, waits for the visual to be fully rendered, publishes it to the specified social media account, and finally sends a confirmation message back to the user on Telegram. This eliminates the manual work of content repurposing, design, and cross-platform posting. This is ideal for content creators, marketers, and businesses who want to repurpose long-form content into short-form social media posts automatically. The AI handles the entire decision-making and execution process, making it a true "set and forget" automation. Workflow Steps Telegram Trigger (No auth) — Listens for incoming Telegram messages. Configured to capture all updates. This is the entry point; the user sends a URL and a platform request (e.g., "Post this YouTube video to Instagram"). Social Media Autopilot (AI Agent, uses OpenAI & Blotato tools) — The core AI agent. It receives the Telegram message text and uses a detailed system prompt to orchestrate the entire pipeline. It decides which tools to call and in what order. The agent uses: - OpenAI ChatGPT (API Key auth) — The language model powering the agent's reasoning. Uses model. - Simple Memory (No auth) — A buffer memory that stores the last 35 conversation turns, allowing the agent to maintain context across multiple tool calls (e.g., polling for status). Create source (Blotato API Key auth) — Takes the extracted URL from the user's message and creates a content source in Blotato. This fetches and processes the content from the URL (e.g., extracts article text, video transcript). Get source (Blotato API Key auth) — Polls the source created in step 3 until its becomes . This ensures the content is fully extracted before proceeding. Create visual - tweet card carousel (Blotato API Key auth) — Used when the target platform is Instagram. Generates a carousel of tweet-style quote cards using a predefined template. Configured with a default profile image, author name, and handle. Create visual - AI image video (Blotato API Key auth) — Used when the target platform is TikTok. Generates an AI-powered video with scenes, voiceover, and captions. Configured with a deep American voice (Brian) and the Recraft v3 AI image model. Get visual (Blotato API Key auth) — Polls the visual generation job until its is exactly . This is critical to ensure the media is fully rendered before publishing. Post to Instagram (Blotato API Key auth) — Publishes the generated carousel to the connected Instagram account (). Uses the media URLs from the completed visual. Post to TikTok (Blotato API Key auth) — Publishes the generated video to the connected TikTok account (). Uses the media URL from the completed visual. Send notification (Telegram Bot Token auth) — Sends a confirmation message back to the original Telegram chat, confirming successful publication (e.g., "✅ Published successfully on Instagram."). Setup Instructions To use this workflow, you will need: n8n instance — Self-hosted or cloud (n8n.cloud). Blotato account — Sign up at blotato.com and get your API key. Connect your Instagram and TikTok accounts inside Blotato. Telegram Bot — Create a bot via @BotFather and get the bot token. This is used for both the trigger and the notification. OpenAI API key — Required for the AI agent. Get one from platform.openai.com. Configuration steps: Import the workflow JSON into n8n. Add your Blotato API credentials as a credential of type "Blotato API". Add your OpenAI API key as a credential of type "OpenAI". Add your Telegram Bot token as a credential of type "Telegram Bot API". In the Post to Instagram and Post to TikTok nodes, select the correct Blotato-connected accounts from the dropdown. Activate the workflow. Use Cases & Variations Content Repurposing: Automatically turn YouTube videos into TikTok clips or blog posts into Instagram carousels. Multi-Platform Posting: Extend the workflow to post to other platforms like LinkedIn, Facebook, or Twitter by adding more Blotato post nodes. Scheduled Digests: Replace the Telegram trigger with a Schedule trigger to automatically process a list of URLs from a Google Sheet or RSS feed. Brand Customization: Modify the carousel template ID and video settings (voice, model, colors) to match your brand guidelines. Approval Workflow: Add a manual approval step (e.g., a Slack message with buttons) before publishing, giving you control over what goes live.

13 nodes

Low Cost AI Videos with Veo3 Fast for YouTube/TikTok

AI Video Generation & Social Media Upload Workflow This workflow automates the process of generating AI-powered videos using Google's Veo3 Fast model, saving them to Google Drive, generating SEO-optimized titles with GPT-4o, and automatically uploading them to YouTube and TikTok. It's designed for content creators, marketers, and social media managers who want to streamline their video production pipeline from a single Google Sheet interface. The workflow is triggered by a Google Sheet that acts as a central command center. You simply add your video prompts and desired durations to the sheet, and the workflow handles everything else — from video generation to multi-platform publishing. This eliminates manual downloading, renaming, and uploading steps, saving hours of repetitive work. Node-by-Node Breakdown When clicking 'Test workflow' (Manual Trigger) — No auth. Starts the workflow manually for testing purposes. Useful for initial setup and debugging. Schedule Trigger — No auth. Runs the workflow on a recurring schedule. Currently configured to run every 5 minutes (interval-based on minutes). Get new video (Google Sheets) — OAuth2 (Google). Reads rows from a Google Sheet where the "VIDEO" column is empty, indicating new video requests. The sheet must have columns: PROMPT, DURATION, VIDEO, YOUTUBEURL, and rownumber. Set data (Set) — No auth. Combines the PROMPT and DURATION fields from the sheet into a single prompt string that will be sent to the AI video generation API. Create Video (HTTP Request) — Header Auth (Authorization: Key YOURAPIKEY). Sends a POST request to the Veo3 Fast API endpoint () with the combined prompt as JSON body. Returns a for polling. Wait 60 sec. (Wait) — No auth. Pauses execution for 60 seconds to allow the video generation to complete before checking status. Get status (HTTP Request) — Header Auth (same as above). Polls the Veo3 Fast API status endpoint using the from step 5 to check if video generation is complete. Completed? (IF) — No auth. Checks if the status returned is "COMPLETED". If yes, proceeds to fetch the video URL. If not, loops back to wait another 60 seconds and check again. Get Url Video (HTTP Request) — Header Auth (same as above). Once completed, fetches the full video details including the download URL from the Veo3 API. Generate title (OpenAI) — API Key auth (OpenAI). Uses GPT-4o-mini to generate an SEO-optimized YouTube title (max 60 characters) based on the original prompt. The AI is instructed to match the language of the input and output only the title. Get File Video (HTTP Request) — No auth. Downloads the actual video file from the URL provided by Veo3. This binary data is used for uploading. Upload Video (Google Drive) — OAuth2 (Google). Uploads the downloaded video file to a specified Google Drive folder (named with timestamp + original filename). Update result (Google Sheets) — OAuth2 (Google). Updates the original Google Sheet row with the video URL from Veo3 in the "VIDEO" column. HTTP Request (Upload to YouTube) — Header Auth (Authorization: Apikey YOURAPIKEY). Uploads the video to YouTube via the Upload-Post API. Sends multipart form data including the title (from GPT-4o), username, platform (youtube), and the video binary. Update Youtube URL (Google Sheets) — OAuth2 (Google). Updates the same Google Sheet row with the YouTube video URL in the "YOUTUBE_URL" column. Upload on TikTok (HTTP Request) — Header Auth (same as Upload-Post). Uploads the same video to TikTok via the Upload-Post API, using the same title and username but with platform set to "tiktok". Setup Instructions Google Services: You need a Google Cloud project with the Sheets API and Drive API enabled. Create OAuth2 credentials and connect them in n8n. Fal.ai Account: Sign up at fal.ai to get an API key. In the HTTP Request nodes (Create Video, Get status, Get Url Video), set Header Auth with Name: and Value: . OpenAI Account: Get an API key from OpenAI. Connect it in the Generate title node. Upload-Post Account: Sign up at Upload-Post (free plan includes 10 uploads/month). Get your API key from Manage API Keys. Set Header Auth with Name: and Value: . Create a profile and use its username in the field. Google Sheet: Create a copy of this template. Add your prompts and durations. Leave the VIDEO and YOUTUBE_URL columns empty. Use Cases & Variations Content Repurposing: Modify the workflow to generate videos from blog posts or articles by adding an HTTP Request node to fetch content first. Multi-Language Support: The GPT-4o prompt already generates titles in the same language as the input. You can extend this to translate prompts before video generation. Additional Platforms: Add more HTTP Request nodes to upload to Instagram, Facebook, or LinkedIn using the same Upload-Post API (just change the parameter). Scheduling: Instead of running every 5 minutes, you could trigger the workflow via webhook from a form submission (e.g., Typeform or Google Forms). Thumbnail Generation: Add a node to generate video thumbnails using DALL-E or another image generation API before uploading. Analytics Tracking: After upload, add nodes to fetch video analytics from YouTube API and log them back to the Google Sheet.

23 nodes

Ready to automate with n8n?

Get affordable managed n8n hosting with 24/7 support.