Block 1 - Schedule Trigger
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1.2
This workflow is provided as-is. Please review and test before using in production.
This workflow finds fresh Reddit posts that match your keywords, decides if they’re actually relevant to your brand, writes a short human style reply using AI, posts it, and logs everything to Base...
n8n-nodes-base.scheduletrigger, n8n-nodes-base.reddit, @n8n/n8n-nodes-langchain.agent, @n8n/n8n-nodes-langchain.lmchatgooglegemini, @n8n/n8n-nodes-langchain.outputparserstructured, n8n-nodes-base.splitinbatches, n8n-nodes-base.if, @n8n/n8n-nodes-langchain.memorybufferwindow
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Arunava.
Original n8n.io sourceLead gen without spam: drop helpful replies where your audience hangs out.
Get discovered by AI surfaces (AI Overviews / SGE, AISEO/GSEO) via high-quality brand mentions.
Customer support in the wild: answer troubleshooting threads fast.
Community presence: steady, non-salesy contributions in niche subreddits.
Searches Reddit for your keyword query on a schedule (e.g., every 30 min)
Checks Baserow first so you don’t reply twice to the same post
Uses an AI prompt tuned for short, no-fluff, subreddit-friendly comments
Softly mentions your brand only when it’s clearly relevant
Posts the comment via Reddit’s API
Saves post_id, comment_id, reply, permalink, status to Baserow
Processes posts one-by-one with an optional short wait to be nice to Reddit
Reddit developer API
Baserow account, table, and API token
AI provider API (OpenAI / Anthropic / Gemini)
Create Baserow table
Fields (user-field names exactly):
post_id (unique), permalink, subreddit, title, created_utc, reply (long text), replied (boolean), created_on (datetime).
Add credentials in n8n
read, submit, identity) and set a proper User-Agent string (Reddit requires it).Set the Schedule Trigger (Cron) Start hourly (or every 2–3h). Pacing is mainly enforced by the Wait nodes.
Update “Check duplicate row” (HTTP Request)
https://api.baserow.io/api/database/rows/table/{TABLE_ID}/?user_field_names=true&filter__post_id__equal={{$json.post_id}}Authorization: Token YOUR_BASEROW_TOKEN
(Use your own Baserow domain if self-hosted.)Configure “Filter Replied Posts”
Ensure it skips items where your Baserow record shows replied === true (so you don’t comment twice).
Configure “Fetch Posts from Reddit” Set your keyword/search query (and time/sort). Keep User-Agent header present.
Configure “Write Reddit Comment (AI)”
reply field (≤80 words, helpful, non-salesy).POST https://oauth.reddit.com/api/commentthing_id: "t3_{{$json.post_id}}", text: "{{$json.reply}}"user_agent value in header by your username n8n:reddit-autoreply:1.0 (by /u/{reddit-username})POST https://api.baserow.io/api/database/rows/table/{TABLE_ID}/?user_field_names=trueAuthorization: Token YOUR_BASEROW_TOKENpost_id, permalink, subreddit, title, created_utc, reply, replied, created_on={{$now}}.Keep default pacing Leave Wait 5m (cool-off) and Wait 6h (global pace) → ~4 comments/day. Reduce waits gradually as account health allows.
Test & enable Run once manually, verify a Baserow row and one test comment, then enable the schedule.
I’m happy to help you get this running smoothly—or tailor it to your brand.
Reach out to me via email: [email protected]
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
Showing the first 24 of 35 workflow blocks. Download the JSON for the full node graph.
| Workflow | Auto-comment on Reddit posts with AI brand mentions & Baserow tracking |
|---|---|
| Complexity | advanced |
| Nodes | 35 |
| Categories | Social Media, Multimodal AI |
| Author | Arunava |
| Published | 10 Aug 2025 |
Use the JSON export at /data/workflows/7217/7217.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
This workflow finds fresh Reddit posts that match your keywords, decides if they’re actually relevant to your brand, writes a short human style reply using AI, posts it, and logs everything to Base...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Social Media, Multimodal AI use case.