🔓 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

TikTok + Google Sheets, posts published and tracked

Lisa Granqvist Partner Workflow Automation Expert

Posting to TikTok consistently sounds simple until you’re juggling video files, captions, and “did we post this yet?” notes across three different places. One missed step and you lose the thread. Two missed steps and you stop posting altogether.

This TikTok Sheets automation hits social media managers first, but solo content creators and busy marketing leads feel it too. You get a repeatable daily pipeline that publishes for you and logs the full paper trail in Google Sheets.

Below, you’ll see how the workflow turns an idea into a rendered vertical video, uploads it to TikTok, and updates your spreadsheet so you always know what’s live.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: TikTok + Google Sheets, posts published and tracked

The Problem: TikTok Posting Becomes a Tracking Nightmare

Daily TikTok output is rarely blocked by “a lack of ideas.” It’s blocked by friction. Someone writes an idea in a note, someone else drafts a caption in a doc, the video render link sits in a chat thread, and the upload happens whenever there’s a spare moment. Later, you want to reuse a format that worked, but you can’t find the prompt, the sound choice, or even the final exported file. You waste time recreating what you already did, and you still don’t have clean tracking.

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

  • Ideas get lost because they live in DMs, voice notes, and random docs instead of one place.
  • Uploading is repetitive, and doing it daily quietly eats about an hour a day.
  • Status tracking becomes “trust me, it’s posted,” which makes planning next week a mess.
  • When you want to scale, the process collapses because nobody can follow the chain from idea to live post.

The Solution: Daily AI Videos, Auto-Published and Logged

This n8n workflow gives you a hands-free content engine that runs on a schedule. It starts by generating a viral-style idea angle using an OpenAI chat model, then turns that idea into structured fields you can actually reuse (caption, environment, sound, production notes). Those fields get appended to Google Sheets immediately, so you have a permanent record before anything else happens. Next, the workflow composes a full “before/after” style video concept and script, formats a master prompt, and sends it to VEO3 (via the Kie API) to render a cinematic vertical video in 9:16. After a short wait while rendering completes, it fetches the final render URL, saves it back into your sheet, uploads the media through Blotato, and publishes straight to TikTok. Finally, it updates the row status so your tracking matches reality.

The workflow starts on a daily schedule, then moves through three big stages: ideation and structure, video rendering, and publishing. The end result is simple: TikTok gets posted, and Google Sheets becomes your source of truth.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you publish one TikTok per day. Manually, it’s common to spend about 10 minutes writing the idea and caption, another 15 minutes prepping the prompt and render request, then 10 minutes downloading, naming, and uploading the final video. That’s roughly 35 minutes a day, or about 4 hours a week. With this workflow, you spend maybe 5 minutes checking the Google Sheet and tweaking the prompt style, then the render and upload happen in the background. The sheet updates when it’s live, so you’re not double-checking everything later.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Google Sheets for logging ideas, prompts, and statuses.
  • Blotato to upload media and publish to TikTok.
  • OpenAI API key (get it from the OpenAI API dashboard).

Skill level: Intermediate. You’ll connect accounts, add API keys, and edit a few prompts and sheet columns.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

Daily schedule kickoff. A Schedule Trigger runs the workflow on your preferred cadence (daily by default). No one has to remember to “start the machine.”

Idea creation and structured logging. An OpenAI-powered agent generates a viral-style idea angle, then parses it into structured fields. Those fields are appended to Google Sheets right away, so the spreadsheet captures the concept even if later steps fail.

Prompting and VEO3 rendering. The workflow assembles a master prompt and script, formats the render request, then sends it through an HTTP Request node to VEO3 (Kie API). It waits, checks for completion, and grabs the final render details when they’re ready.

Publish and status updates. The final URL is recorded back in Google Sheets, the video is uploaded to Blotato, and then Blotato publishes to TikTok. A final Google Sheets update marks the publish status, which means your tracker stays accurate without you babysitting it.

You can easily modify the posting frequency to run multiple times a day, or change the sheet columns to match your content ops style. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Schedule Trigger

Set the workflow to run on a schedule so content production kicks off automatically.

  1. Add and open Scheduled Content Kickoff.
  2. Define your schedule in the Rule interval to match your publishing cadence.
  3. Connect Scheduled Content Kickoff to Create Video Concept as the first step in the flow.

Step 2: Connect Google Sheets

Store and update content ideas and publishing status in Google Sheets.

  1. Open Append Idea to Sheets and set Operation to append.
  2. Map the columns to expressions such as {{$json.output[0].Idea}}, {{$json.output[0].Caption}}, {{$json.output[0].Status}}, {{$json.output[0].Sound}}, and {{$json.output[0].Environment}}.
  3. Credential Required: Connect your googleSheetsOAuth2Api credentials in Append Idea to Sheets.
  4. Open Record Final URL and set Operation to update with Matching Columns set to idea.
  5. Set the final_output field to {{$json.data.response.resultUrls[0]}}.
  6. Credential Required: Connect your googleSheetsOAuth2Api credentials in Record Final URL and Mark Publish Status.

⚠️ Common Pitfall: Make sure your sheet has columns named idea, caption, production, sound_prompt, environment_prompt, and final_output to match the mappings.

Step 3: Set Up AI Concept and Script Generation

Configure the AI chain that creates the idea and structured video prompt.

  1. Open Create Video Concept and confirm the Text prompt is set to the provided multi-line instruction (starting with =Generate a creative concept involving:).
  2. Ensure LLM Draft Concept is connected as the language model for Create Video Concept. Credential Required: Connect your openAiApi credentials in LLM Draft Concept.
  3. Keep Idea Angle Think Tool and Parse Idea Output Fields connected as AI tool and output parser for Create Video Concept (credentials are added to the parent node, not these sub-nodes).
  4. Open Assign Master Prompt and confirm the json_master value is set to the full schema string, model to veo3_fast, and aspectRatio to 9:16.
  5. Open Compose Video Script and confirm the input references: {{$('Append Idea to Sheets').item.json.idea}}, {{$('Append Idea to Sheets').item.json.environment_prompt}}, and {{$('Append Idea to Sheets').item.json.sound_prompt}}.
  6. Ensure Chat Model Engine is connected as the language model for Compose Video Script. Credential Required: Connect your openAiApi credentials in Chat Model Engine.
  7. Keep Reasoning Helper and Structured JSON Extractor connected to Compose Video Script as AI tool and output parser (credentials go on the parent node).

Tip: If output parsing fails, verify Structured JSON Extractor has the exact schema with title and final_prompt.

Step 4: Configure Render and Retrieval Pipeline

Send the AI script to VEO3, wait for rendering, and retrieve the final video URL.

  1. Open Format Render Prompt and confirm the code formats the output with model: "veo3_fast" and aspectRatio: "9:16".
  2. Open Request VEO3 Render and set URL to https://api.kie.ai/api/v1/veo/generate with Method POST.
  3. Set Body to { "prompt": {{ $json.prompt }}, "model": "{{ $('Assign Master Prompt').item.json.model }}", "aspectRatio": "{{ $('Assign Master Prompt').item.json.aspectRatio }}" }.
  4. Credential Required: Connect your httpHeaderAuth credentials in Request VEO3 Render and Fetch Render Details.
  5. Open Delay for Render and set Unit to minutes and Amount to 3.
  6. Open Fetch Render Details and set URL to https://api.kie.ai/api/v1/veo/record-info with query parameter taskId as {{$('Request VEO3 Render').item.json.data.taskId}}.

Step 5: Configure Publishing to Blotato and TikTok

Upload the rendered video and publish it to TikTok via Blotato, then update status.

  1. Open Upload Media to Blotato and set Media URL to {{$json.final_output}} with Resource set to media.
  2. Credential Required: Connect your blotatoApi credentials in Upload Media to Blotato and Publish to TikTok.
  3. Open Publish to TikTok and set Platform to tiktok, Post Content Text to {{$('Append Idea to Sheets').first().json.caption}}, and Post Content Media URLs to {{$json.url}}.
  4. Enable Post Create Tiktok Option Is Ai Generated by setting it to true.
  5. Open Mark Publish Status and set production to Publish, matching by idea with {{$('Append Idea to Sheets').first().json.idea}}.

⚠️ Common Pitfall: If your Blotato account requires a specific TikTok account selection, ensure the Account ID in Publish to TikTok is configured.

Step 6: Test and Activate Your Workflow

Run a manual test to confirm data moves through the full render and publish pipeline.

  1. Click Execute Workflow to run Scheduled Content Kickoff manually.
  2. Confirm that Append Idea to Sheets appends a new row with idea, caption, environment, and sound values.
  3. Verify Request VEO3 Render returns a taskId, and Fetch Render Details returns a valid resultUrls[0].
  4. Check that Record Final URL updates the row and Upload Media to Blotato receives the media URL.
  5. Confirm Publish to TikTok succeeds and Mark Publish Status updates the sheet to Publish.
  6. When everything looks correct, switch the workflow Active toggle on for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Google Sheets credentials can expire or need specific permissions. If things break, check the n8n Credentials page and confirm the connected Google account still has access to the sheet.
  • 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.

Frequently Asked Questions

How long does it take to set up this TikTok Sheets automation?

About 45 minutes if your accounts and API keys are ready.

Do I need coding skills to automate TikTok Sheets automation?

No. You’ll mostly connect accounts and paste in API keys. The only “techy” part is light prompt editing, and you can copy the defaults to start.

Is n8n free to use for this TikTok Sheets 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 and VEO3 API usage costs, which depend on how often you generate videos.

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 customize this TikTok Sheets automation workflow for YouTube Shorts or Instagram Reels?

Yes, but you’ll change the publishing end of the workflow. Keep the Google Sheets logging and the VEO3 render steps as-is, then duplicate the Blotato publishing step for another platform. Common tweaks include updating the caption style, switching prompt “vibe” (cinematic vs. minimalist), and adding extra tracking columns like post URL or hook type.

Why is my TikTok connection failing in this workflow?

Most of the time it’s expired Blotato credentials or missing TikTok permissions on the connected account. Reconnect Blotato inside n8n, then retry a single run from the upload/publish step. If it fails only on busy days, you may also be hitting rate limits, so spacing posts out with a longer Wait can help. Frankly, connection issues are normal with social platforms, so build in a quick “reconnect and retry” habit.

How many videos can this TikTok Sheets automation handle?

If you self-host, there’s no fixed execution limit (it depends on your server and your API quotas). On n8n Cloud, it depends on your plan limits, but most small teams can comfortably run daily or multiple times per day as long as rendering and API usage stay within budget.

Is this TikTok Sheets automation better than using Zapier or Make?

Often, yes, because this workflow has more moving parts than a typical two-step zap. n8n handles branching, waits, and multi-stage processing without turning every extra step into a pricing surprise, and you can self-host if volume grows. Zapier or Make can still work if you only want “new row in Google Sheets → send a notification,” but they get awkward when you add rendering, status updates, and retries. If you want help choosing, Talk to an automation expert.

Once this is running, TikTok posting stops being a daily scramble and turns into a predictable system. Your Google Sheet stays honest, your videos keep shipping, and you get your creative time back.

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