🔓 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

Product Hunt to Google Sheets, AI-enriched tool list

Lisa Granqvist Partner Workflow Automation Expert

Keeping up with Product Hunt sounds simple until you try to turn “cool launches” into something usable. Then it’s tabs, copy-paste, missing fields, and a spreadsheet that slowly turns into a junk drawer.

This Product Hunt automation hits marketers building swipe files, founders doing competitive research, and agency folks who need a reliable stream of tools for newsletters and client ideas. The win is practical: a clean, deduplicated tools list in Google Sheets that stays searchable instead of turning into chaos.

You’ll see how the workflow pulls new Product Hunt posts daily, enriches each one with OpenAI, and stores the results in a structured “Tools” sheet (with category matching so duplicates don’t creep in).

How This Automation Works

See how this solves the problem:

n8n Workflow Template: Product Hunt to Google Sheets, AI-enriched tool list

The Challenge: Turning Product Hunt Into Usable Research

Product Hunt is great for discovery, but it’s a terrible place to “keep” knowledge. You find a tool, skim a few comments, and tell yourself you’ll remember it later. A week passes and it’s gone. If you do try to track launches manually, you end up with inconsistent naming, missing categories, and duplicates that quietly wreck any reporting. Worse, the moment you want to translate descriptions, tag tools by function, or build a directory, you’re doing the same editing work again and again.

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

  • Copying titles, links, and blurbs into Sheets takes about 5 minutes per tool, and you still have to clean formatting afterward.
  • Duplicates sneak in because “ToolName” and “ToolName AI” look like different entries during a busy week.
  • Categories stay inconsistent, which means filters and pivots stop being trustworthy.
  • Manual enrichment (translation, tags, summaries) gets postponed, so the spreadsheet never becomes a real research asset.

The Fix: Auto-Collect and AI-Enrich Product Hunt Tools

This workflow runs on a schedule and pulls fresh Product Hunt posts through the Product Hunt API (GraphQL). Each post is normalized into a consistent structure so every row in your spreadsheet follows the same schema. Then the workflow checks Google Sheets to see if that tool already exists by title. If it’s new, an AI agent enriches it with the kind of info you usually wish you had later: translated text, clearer categorization, extracted “what it does,” and documentation-style context you can reuse for directories or internal dashboards. Finally, it writes the enriched tool into a clean “Tools” sheet and keeps going, page by page, until there’s nothing left to fetch.

The workflow starts with a daily schedule, then fetches Product Hunt posts in batches using cursor-based pagination. New items go through OpenAI enrichment and structured JSON parsing. The output lands in Google Sheets with category dictionary syncing so your taxonomy stays tidy.

What Changes: Before vs. After

Real-World Impact

Say you review 20 Product Hunt launches each weekday and track them in Sheets. Manually, it’s maybe 5 minutes per tool to copy fields, fix formatting, and add basic categories, which is about 100 minutes a day. With this workflow, you spend about 10 minutes skimming the finished rows and starring what matters, while the daily run handles collection, enrichment, and dedupe in the background. That’s roughly an hour and a half back per day, and the sheet is actually usable.

Requirements

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Product Hunt for daily tool discovery via API.
  • Google Sheets to store the enriched “Tools” database.
  • OpenAI API key (get it from the OpenAI dashboard API keys page).

Skill level: Intermediate. You’ll connect credentials and may tweak a prompt or two, but you won’t be writing an app.

Need help implementing this? Talk to an automation expert (free 15-minute consultation).

The Workflow Flow

A daily schedule triggers the run. n8n starts once per day (you can change it), and it initializes a cursor so the Product Hunt API can be paged safely.

Product Hunt data is fetched and normalized. The workflow pulls posts via GraphQL, then restructures the response into a consistent schema so every tool has the same core fields (title, URL, tagline, and whatever else you choose to keep).

New tools get AI enrichment. A Google Sheets lookup checks if the title already exists. If it’s new, the AI agent generates translations, documentation-style context, function-area classification, and “tech extraction,” then a code node parses the AI JSON into clean columns.

Everything is written to Google Sheets and the loop continues. Categories are matched against a dictionary sheet (and added if needed), the final row is appended or updated, and pagination continues with a short wait to avoid hitting limits.

You can easily modify the enrichment fields to add tags, scoring, or SEO-friendly summaries based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Schedule Trigger

This workflow starts on a daily schedule and initializes the pagination cursor before calling the Product Hunt API.

  1. Add the Daily Schedule Start node and set Trigger Hour to 9.
  2. Connect Daily Schedule Start to Set Initial Cursor.
  3. In Set Initial Cursor, set the cursor value to null.
  4. Ensure the flow continues from Set Initial Cursor to Request Product Hunt API.
If you need a different run time, adjust the Daily Schedule Start hour but keep the daily interval to avoid API overuse.

Step 2: Connect Google Sheets

Google Sheets stores enriched product rows and the category translation dictionary.

  1. Open Find Tool by Title and set the Sheet to Tools and Document to Main Spreadsheet (replace [YOUR_ID] with your sheet ID).
  2. In Find Tool by Title, set the filter Title lookup to {{ $json.Title }}.
  3. Open Store Enriched Tool Row, set Operation to appendOrUpdate, Sheet to Tools, and map Title to {{ $json.Title }}.
  4. Configure Read Category Dictionary to read the Category Dictionary sheet from Main Spreadsheet.
  5. Configure Write Category Dictionary with Operation appendOrUpdate and map the columns to {{ /*n8n-auto-generated-fromAI-override*/ $fromAI('Category_Name_English', ``, 'string') }} and {{ /*n8n-auto-generated-fromAI-override*/ $fromAI('Category_Name_French', ``, 'string') }}.
  6. Credential Required: Connect your googleSheetsOAuth2Api credentials for Find Tool by Title, Store Enriched Tool Row, Read Category Dictionary, and Write Category Dictionary.
⚠️ Common Pitfall: Make sure the sheet IDs and sheet names match exactly; a mismatched sheet will cause Find Tool by Title and Store Enriched Tool Row to return empty results.

Step 3: Set Up AI Enrichment

The AI agent translates and enriches product data, using a category dictionary as tools.

  1. Connect OpenAI Mini Model as the language model for AI Enrich Product Data.
  2. In OpenAI Mini Model, set the Model to gpt-4.1-mini.
  3. In AI Enrich Product Data, set Text to {{JSON.stringify($json)}} and keep Prompt Type as define.
  4. Confirm Read Category Dictionary and Write Category Dictionary are connected as AI tools to AI Enrich Product Data.
  5. Credential Required: Connect your openAiApi credentials for OpenAI Mini Model.
Read Category Dictionary and Write Category Dictionary are AI tools for AI Enrich Product Data—add credentials through the parent AI setup so the tools can be used during execution.

Step 4: Configure API Fetch and Pagination

This section requests Product Hunt data, formats it, and manages pagination.

  1. In Request Product Hunt API, set URL to https://api.producthunt.com/v2/api/graphql, Method to POST, and Body to the JSON expression: ={ "query": "{ posts(order: RANKING, first:5 , after: \"{{ $json.cursor }}\") { edges { cursor node { name description tagline website thumbnail { url } topics { edges { node { name } } } media { videoUrl type url } productLinks { type url } } } pageInfo { endCursor hasNextPage } } }" } .
  2. Enable JSON headers in Request Product Hunt API and set Headers to { "Content-Type": "application/json", "Accept": "application/json" }.
  3. Credential Required: Connect your oAuth2Api credentials in Request Product Hunt API.
  4. In Format API Response, keep the existing code that maps Product Hunt edges into fields like Title, Description, category, UrlDemo, and UrlLogo.
  5. In Get Pagination Details, set cursor to {{ $('Request Product Hunt API').first().json.data.posts.pageInfo.endCursor }} and hasnextpage to {{ $('Request Product Hunt API').first().json.data.posts.pageInfo.hasNextPage }}.
  6. In Check Next Page, keep the condition {{ $json.hasnextpage }} so the loop only continues when more pages exist.

Step 5: Configure Output Storage and Loop Control

This stage prevents duplicates, parses AI output, stores enriched rows, and controls pagination timing.

  1. In Find Tool by TitleCheck New Tool, keep the condition {{ $json.isEmpty() }} to process only new products.
  2. In Parse AI JSON Output, keep the JavaScript that strips markdown and parses raw JSON from the AI output.
  3. Ensure Store Enriched Tool Row runs after Parse AI JSON Output to write enriched data into the Tools sheet.
  4. Configure Delay 15 Seconds with Amount set to 15 to throttle pagination requests.
  5. In Iteration Safety Gate, keep the condition {{$runIndex}} > 50 to prevent endless looping.
  6. Leave Loop Continuation as a no-op node to continue the pagination loop after delays.
⚠️ Common Pitfall: If Parse AI JSON Output returns an error payload, it will still write to Store Enriched Tool Row. Review the error and rawOutput columns to catch invalid AI responses.

Step 6: Test and Activate Your Workflow

Run a manual test to confirm the Product Hunt API request, AI enrichment, and Google Sheets output all work as expected.

  1. Click Execute Workflow and verify Request Product Hunt API returns data.
  2. Confirm Format API Response outputs structured items with fields like Title, Description, and UrlDemo.
  3. Check AI Enrich Product Data produces valid JSON and that Parse AI JSON Output parses it without errors.
  4. Verify new records appear in the Tools sheet via Store Enriched Tool Row.
  5. Once verified, toggle the workflow to Active so Daily Schedule Start runs daily.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Watch Out For

  • Product Hunt OAuth2 credentials can expire or need specific permissions. If things break, check the Product Hunt developer app settings and the connected credential inside n8n 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.

Common Questions

How quickly can I implement this Product Hunt automation?

About an hour if your accounts are ready.

Can non-technical teams implement this Product Hunt automation?

Yes, but someone should feel comfortable connecting credentials and testing a run. No coding is required for the default setup.

Is n8n free to use for this Product Hunt 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, which are usually a few cents per enriched tool depending on prompt length.

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.

How do I adapt this Product Hunt automation solution to my specific challenges?

You can. The easiest place is the AI Enrich Product Data step, where you can change what metadata gets generated (tags, scoring, SEO descriptions, even “who it’s for”). If you prefer a different destination, you can replace the Store Enriched Tool Row Google Sheets step with Airtable, Notion, or a database node while keeping the same enrichment and dedupe logic. You can also swap the schedule for a Webhook or Telegram trigger when you want on-demand runs.

Why is my Product Hunt connection failing in this workflow?

Most of the time it’s OAuth2 credentials that expired or lost access. Reconnect the Product Hunt credential in n8n and confirm your developer app still has the right scopes. Also check the HTTP Request node inputs, because a small GraphQL query change can break parsing if Product Hunt’s response shape changes. If the first page works and later pages fail, it’s often cursor pagination or rate limiting, so keep the Wait node and slow the loop a bit.

What’s the capacity of this Product Hunt automation solution?

On self-hosted n8n, capacity mostly depends on your server and API limits, not an execution quota. On n8n Cloud, your monthly execution limit depends on plan (Starter is suited for lighter daily runs). Practically, this workflow processes Product Hunt posts in batches, with a built-in wait to stay safe, so it’s designed for steady daily collection rather than a one-time scrape of massive historical data.

Is this Product Hunt automation better than using Zapier or Make?

Often, yes. This flow relies on pagination, branching logic, and “check then write” dedupe behavior, which is where n8n tends to feel simpler and more controllable. You also get a realistic self-hosting path if you don’t want per-task pricing as the list grows. Zapier or Make can still work if you only need a tiny version of this (like “send me today’s top 3 tools”), and you value speed over flexibility. If you want a second opinion before you commit, Talk to an automation expert.

Once this is running, your Product Hunt discoveries stop living in browser tabs and start compounding into a real dataset. The workflow handles the repetitive stuff, and you get a tools list you can actually use.

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