🔓 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

Reddit + Google Sheets: LinkedIn ideas, organized

Lisa Granqvist Partner Workflow Automation Expert

You find a great Reddit thread, grab a few quotes, and tell yourself you’ll “turn it into a LinkedIn post later.” Later rarely happens. The tab gets closed, the insight gets lost, and your content calendar stays empty.

This Reddit LinkedIn ideas automation hits marketers first, honestly. But founders trying to stay visible and content strategists building a repeatable pipeline deal with the same mess. The outcome is simple: you end up with a clean Google Sheet full of usable LinkedIn angles, backed by real sources.

You’ll see how the workflow pulls posts and comments, uses AI to extract pain points, and then writes post ideas you can actually publish (or hand to a writer).

How This Automation Works

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

n8n Workflow Template: Reddit + Google Sheets: LinkedIn ideas, organized

Why This Matters: Turning “Reddit Gold” Into a Real Backlog

Reddit is full of blunt, specific language your buyers actually use. The problem is that collecting it is tedious, and turning it into LinkedIn content is even worse. You end up skimming threads, copying chunks into notes, losing the link, and trying to remember why it mattered in the first place. Then you sit down to write and the moment is gone. What was a clear pain point in the thread becomes a vague, generic post that doesn’t land.

The friction compounds. Here’s where it usually breaks down.

  • You spend about 10 minutes per thread just gathering context, and that’s before you write anything.
  • When sources aren’t saved, you can’t sanity-check your angle later, so you second-guess and stall.
  • Comments hold the best insights, but reading 50+ replies manually is a time sink you keep avoiding.
  • Ideas live in random places (tabs, docs, DMs), which makes it hard to build a repeatable content system.

What You’ll Build: Reddit Threads → LinkedIn Ideas in Google Sheets

This workflow gives you a simple input (a subreddit and a keyword) and turns it into a structured content backlog. It starts from a form submission in n8n, creates a fresh Google Sheet for the run, and then pulls matching Reddit posts. From there, it filters to keep posts that actually have comments worth reading, batches through them, and fetches the comment threads. Next, AI extracts the real pain points and patterns hiding inside the messy conversation, then proposes LinkedIn-ready topic angles with headlines, hooks, and CTAs tailored for a professional audience. Finally, everything gets appended into Google Sheets so you can review, edit, and ship.

The workflow begins when you submit your subreddit + keyword. Reddit data gets collected and cleaned into a single “post + comments” bundle. OpenAI then turns that bundle into insights and LinkedIn topic ideas, and Google Sheets becomes the place your backlog lives.

What You’re Building

Expected Results

Say you research content twice a week and review about 6 Reddit posts each session. Manually, if you spend roughly 10 minutes finding a solid post, 10 minutes scanning comments, and another 10 minutes drafting an angle, that’s about 3 hours per session. With this workflow, you submit one form in a minute, let the run process in the background, then spend about 30 minutes reviewing the best rows in Google Sheets. That’s roughly 5 hours back each week, with a better paper trail.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Reddit for fetching posts and comments via API.
  • Google Sheets to store ideas in a shared backlog.
  • OpenAI API key (get it from your OpenAI dashboard under API keys)

Skill level: Beginner. You’ll connect accounts, paste an API key, and tweak a couple of fields like subreddit and keyword.

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

Step by Step

A form submission kicks things off. You enter a subreddit and a keyword (for example, “r/SaaS” + “onboarding”). That input becomes the “brief” for the run.

Reddit posts get collected, then trimmed down. The workflow retrieves posts that match your criteria, filters for posts that actually have comments, then processes them in batches so the run stays stable even when there’s a lot of data.

Comments are aggregated into one readable bundle. Instead of sending scattered replies into an AI prompt, it assembles a single post-with-comments text block, which gives the model context and makes the insights less generic.

OpenAI generates insights and LinkedIn angles. One pass derives pain points and patterns. Another pass proposes LinkedIn topics with headlines, hooks, and CTAs that fit a professional feed.

Google Sheets becomes your content backlog. The workflow maps the outputs into consistent columns and appends them as new rows, so you can sort, tag, and assign them later.

You can easily modify the subreddit/keyword input to match a niche campaign, or adjust the AI prompt to fit your brand voice. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Form Trigger

Capture the subreddit and keyword inputs that kick off the pipeline.

  1. Add the Form Submission Trigger node.
  2. Set Form Title to Post ideas generation.
  3. Add form fields for Subreddit and What to search for in the subreddit, with Subreddit marked as required.
  4. Ensure the trigger is connected to Create Google Sheet.

If form submissions return empty results, double-check the field labels match exactly so downstream expressions resolve correctly.

Step 2: Connect Google Sheets

Create a new spreadsheet for each run and prepare it for appended results.

  1. Add the Create Google Sheet node.
  2. Set Resource to spreadsheet.
  3. Set Title to =post_ideas_{{ $json.Subreddit }}_{{ $json['What to search for in the subreddit'] }}_{{$now.format('yyyy_MM_dd_HH_mm_ss')}}.
  4. Credential Required: Connect your googleSheetsOAuth2Api credentials.

⚠️ Common Pitfall: If the spreadsheet title expression fails, confirm the form field labels match Subreddit and What to search for in the subreddit exactly.

Step 3: Retrieve and Filter Reddit Posts

Search Reddit and keep only posts that have comments to analyze.

  1. Add Retrieve Reddit Posts and connect it after Create Google Sheet.
  2. Set Operation to search.
  3. Set Subreddit to ={{ $('Form Submission Trigger').item.json.Subreddit }}.
  4. Set Keyword to ={{ $('Form Submission Trigger').item.json['What to search for in the subreddit'] }}.
  5. Credential Required: Connect your redditOAuth2Api credentials.
  6. Add Filter Posts With Comments and configure the condition: Left Value ={{ $json.num_comments }}, Operation gt, Right Value 0.
  7. Connect Filter Posts With Comments to Batch Through Posts.

Step 4: Fetch Comments and Assemble Post Context

Batch through posts, collect comments, and build a combined payload for analysis.

  1. Add Batch Through Posts to control post iteration.
  2. Add Fetch Post Comments with Resource set to postComment and Operation set to getAll.
  3. Set Post ID to ={{ $json.id }} and Subreddit to ={{ $json.subreddit }}.
  4. Credential Required: Connect your redditOAuth2Api credentials.
  5. Add Aggregate Comment Text and aggregate the body field.
  6. Add Assemble Post With Comments and map fields: commentText to ={{ $json.body }}, postId to ={{$("Batch Through Posts").item.json.id}}, and postContent to ={{$("Batch Through Posts").item.json.selftext}}.

Assemble Post With Comments outputs to both Derive Content Insights and Combine Insights With Source in parallel, so ensure both branches are connected before testing.

Step 5: Set Up AI Analysis and Topic Generation

Generate structured insights and LinkedIn topic ideas from the combined Reddit content.

  1. Add the OpenAI Chat Engine node with model chatgpt-4o-latest and connect it as the language model for Derive Content Insights.
  2. Credential Required: Connect your openAiApi credentials in OpenAI Chat Engine (the agent uses this parent model).
  3. In Derive Content Insights, set Text to the full prompt shown and keep Prompt Type as define.
  4. Add Combine Insights With Source with Mode set to combine and Combine By set to combineByPosition.
  5. Combine Insights With Source outputs to both Propose LinkedIn Topics and Map Insight Output in parallel.
  6. Add Propose LinkedIn Topics and set the prompt message content to the provided Markdown instruction block.
  7. Credential Required: Connect your openAiApi credentials in Propose LinkedIn Topics.
  8. Add Map Topic Ideas and set postIdeas to ={{ $json.message.content }}.
  9. Add Map Insight Output and map contentAnalysis, commentText, postId, and postContent to their respective expressions: ={{ $json.output }}, ={{ $json.commentText }}, ={{ $json.postId }}, and ={{ $json.postContent }}.
  10. Add Merge Ideas And Insights with Mode set to combine and Combine By set to combineByPosition.

Step 6: Configure Output to Google Sheets

Prepare columns and append each enriched result into the newly created spreadsheet.

  1. Add Prepare Sheet Columns and set the fields: Post Content to ={{ $json.postContent }}, Comments to ={{ $json.commentText.join('\n\n\n\n--------\n\n\n') }}, Insights to ={{ $json.contentAnalysis }}, and Linkedin post ideas to ={{ $json.postIdeas }}.
  2. Add Append Results To Sheet with Operation set to append and Sheet Name set to Sheet1.
  3. Set Document ID to ={{ $('Create Google Sheet').item.json.spreadsheetUrl }}.
  4. Credential Required: Connect your googleSheetsOAuth2Api credentials.

⚠️ Common Pitfall: If rows don’t appear, confirm Append Results To Sheet is mapping columns automatically and that the output fields match the column names exactly.

Step 7: Test and Activate Your Workflow

Run a manual test to validate the full pipeline, then enable it for production use.

  1. Click Execute Workflow and submit a test form in Form Submission Trigger (e.g., Subreddit marketing, search term lead generation).
  2. Confirm Create Google Sheet creates a new spreadsheet and that Append Results To Sheet writes rows with Post Content, Comments, Insights, and Linkedin post ideas.
  3. Verify AI outputs in Derive Content Insights and Propose LinkedIn Topics appear as structured Markdown in the sheet.
  4. Toggle the workflow to Active to start processing live submissions.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Reddit credentials can expire or need specific permissions. If things break, check your Reddit app settings (client ID/secret and scopes) 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 Reddit LinkedIn ideas automation?

About 30 minutes if you already have your Reddit, OpenAI, and Google credentials ready.

Is coding required for this LinkedIn ideas automation?

No. You’ll mostly connect accounts and edit the prompt and sheet columns to match what you want to capture.

Is n8n free to use for this Reddit LinkedIn ideas 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, which are usually a few cents per run depending on how many posts and comments you process.

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 Reddit LinkedIn ideas workflow for different use cases?

Yes, and you should. You can change the form inputs to accept multiple keywords, then adjust the “Retrieve Reddit Posts” step to run once per keyword. Most teams also customize the OpenAI prompt in the “Derive Content Insights” and “Propose LinkedIn Topics” nodes to match their brand voice, their ICP, and the type of post they want (story, checklist, contrarian take).

Why is my Reddit connection failing in this workflow?

Usually it’s an OAuth issue: the Reddit app is misconfigured, scopes aren’t approved, or the token expired. Re-check the Reddit developer app settings, then reconnect the credential inside n8n. If it works for a few posts and then fails, you may be hitting rate limits or pulling from a subreddit that blocks certain API access.

What volume can this Reddit LinkedIn ideas workflow process?

It depends on how many posts you ask for and how long the comment threads are, but most teams run it on 10–30 posts at a time without issues.

Is this Reddit LinkedIn ideas automation better than using Zapier or Make?

For this workflow, n8n is usually the better fit because it’s comfortable with multi-step logic like batching, merging, and shaping AI prompts, and you can self-host when volume grows. Zapier and Make can work, but this kind of “collect → enrich → write → store” flow often turns into lots of separate Zaps/scenarios that are harder to debug. If you want to keep tight control over prompts and data mapping, n8n feels less restrictive. The practical difference is maintenance: when Reddit or your prompt changes, you’ll fix it once inside one workflow. Talk to an automation expert if you want help choosing.

You don’t need more content hacks. You need a system that reliably turns real conversations into publishable ideas, stored where your team can actually use them.

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