Block 1 - Sticky Note
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Reddit Sentiment Analysis with AI Powered Insights Automatically analyze Reddit posts and comments to extract sentiment, emotional tone, and actionable community insights using AI. This powerful n8...
n8n-nodes-base.stickynote, n8n-nodes-base.reddit, n8n-nodes-base.webhook, n8n-nodes-base.splitout, n8n-nodes-base.splitinbatches, @n8n/n8n-nodes-langchain.lmchatopenrouter, @n8n/n8n-nodes-langchain.chainllm, n8n-nodes-base.code
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Gerald Denor.
Original n8n.io sourceAutomatically analyze Reddit posts and comments to extract sentiment, emotional tone, and actionable community insights using AI.
This powerful n8n workflow combines Reddit's API with advanced AI sentiment analysis to help community managers, researchers, and businesses understand public opinion and engagement patterns on Reddit. Get structured insights including sentiment scores, toxicity levels, trending concerns, and moderation recommendations.
The workflow follows a two-stage process:
Before setting up this workflow, you'll need to obtain the following credentials:
http://localhost:8080/oauth/callback (or your n8n instance URL + /oauth/callback)https://www.reddit.com/api/v1/authorizehttps://www.reddit.com/api/v1/access_tokenhttps://your-n8n-instance.com/webhook/reddit-sentiment){
"subreddit": "technology",
"query": "AI",
"limit": 5
}
anthropic/claude-3-haiku or openai/gpt-4 based on your preferences and budgetlimit parameter in the "Get many posts" and "Get many comments in a post" nodes to control how much data you processSend a POST request to your webhook URL with the following parameters:
Required Parameters:
subreddit: The subreddit name (without r/)limit: Number of posts to analyze (recommended: 5-15)Optional Parameters:
query: Search term to filter posts (optional)Example Request:
curl -X POST https://your-n8n-instance.com/webhook/reddit-sentiment \
-H "Content-Type: application/json" \
-d '{
"subreddit": "CustomerService",
"limit": 10
}'
The workflow returns a JSON array with detailed analysis for each post:
[
{
"sentiment_analysis": {
"overall_sentiment": {
"category": "Negative",
"confidence_score": 8
},
"emotional_tone": ["frustrated", "concerned"],
"intensity_level": "High"
},
"content_categorization": {
"discussion_type": "Complaint",
"key_themes": ["billing issues", "customer support"],
"toxicity_level": {
"level": "Low",
"indicators": "No offensive language detected"
}
},
"contextual_insights": {
"community_engagement_quality": "Constructive",
"potential_issues_flagged": ["service disruption"],
"trending_concerns": ["response time", "resolution process"]
},
"actionable_intelligence": {
"moderator_attention_needed": {
"required": "Yes",
"reason": "Customer complaint requiring company response"
},
"response_urgency": "High",
"suggested_follow_up_actions": [
"Escalate to customer service team",
"Monitor for similar complaints"
]
}
}
]
limit parameters to analyze more or fewer posts/comments"Reddit API Authentication Failed"
"OpenRouter API Error"
"Webhook Not Responding"
"AI Analysis Returns Errors"
This workflow can be extended and improved. Consider adding:
Ready to start analyzing Reddit sentiment? Import this workflow and start gaining valuable insights into online community discussions!
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.
| Workflow | Analyze Reddit content and comments for sentiment with Deepseek AI |
|---|---|
| Complexity | intermediate |
| Nodes | 12 |
| Categories | Market Research, AI Summarization |
| Author | Gerald Denor |
| Published | 26 Jul 2025 |
Use the JSON export at /data/workflows/6477/6477.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.
Reddit Sentiment Analysis with AI Powered Insights Automatically analyze Reddit posts and comments to extract sentiment, emotional tone, and actionable community insights using AI. This powerful n8...
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 Market Research, AI Summarization use case.