
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
n8n-nodes-n8ntools-reddit
Advanced tools
N8N Tools Reddit Enhanced - Complete Reddit API integration for N8N
Complete Reddit integration with 80+ operations covering the full Reddit ecosystem. This N8N community node provides comprehensive access to Posts, Comments, Subreddits, Users, Messaging, Live Threads, Moderation, Awards, Flair, and Wiki APIs that are missing from the official Reddit node.
Install this node in your N8N instance:
n8n-nodes-n8ntools-reddit
npm install n8n-nodes-n8ntools-reddit
https://api.n8ntools.io
Complete post management beyond the official node:
Operation | Description | Official Node | Enhanced |
---|---|---|---|
Get Posts | Fetch posts from subreddits/users | ✅ Basic | ✅ Full API |
Create Post | Submit new posts with media | ❌ | ✅ |
Update Post | Edit post content and flair | ❌ | ✅ |
Delete Post | Remove posts | ❌ | ✅ |
Vote on Post | Upvote/downvote posts | ❌ | ✅ |
Save Post | Save/unsave posts | ❌ | ✅ |
Hide Post | Hide/unhide posts | ❌ | ✅ |
Lock Post | Lock/unlock for comments | ❌ | ✅ |
Mark NSFW | Set NSFW status | ❌ | ✅ |
Pin Post | Pin to profile/subreddit | ❌ | ✅ |
Crosspost | Share to multiple subreddits | ❌ | ✅ |
Get Post Details | Full post information | ❌ | ✅ |
Advanced comment system not available in official node:
Complete subreddit management system:
Comprehensive user profile management:
Full messaging system capabilities:
Real-time discussion management:
Advanced moderation toolkit:
Complete awards and coins system:
Advanced flair system for users and posts:
Complete wiki system for documentation:
// Create a new post
Resource: "Posts"
Operation: "Create Post"
Additional Options: {
"subreddit": "r/programming",
"title": "New JavaScript Framework Released",
"text": "Check out this amazing new framework...",
"flair_id": "12345",
"send_replies": true
}
// Vote on the post
Resource: "Posts"
Operation: "Vote on Post"
Post ID: "abc123"
Additional Options: {
"direction": "upvote"
}
// Reply to a comment
Resource: "Comments"
Operation: "Create Comment"
Additional Options: {
"parent_id": "t1_abc123",
"text": "Thanks for your question! Here's the answer...",
"distinguish": false
}
// Vote on the reply
Resource: "Comments"
Operation: "Vote on Comment"
Comment ID: "def456"
Additional Options: {
"direction": "upvote"
}
// Get moderation queue
Resource: "Moderation"
Operation: "Get Mod Queue"
Additional Options: {
"subreddit": "r/myprogramming",
"limit": 25,
"type": "all"
}
// Remove inappropriate content
Resource: "Moderation"
Operation: "Remove Content"
Content ID: "t3_abc123"
Additional Options: {
"spam": false,
"removal_reason": "Rule 3: No self-promotion"
}
// Ban the user
Resource: "Moderation"
Operation: "Ban User"
Additional Options: {
"subreddit": "r/myprogramming",
"username": "spammer123",
"duration": 7,
"reason": "Repeated rule violations",
"ban_message": "You have been temporarily banned for spam."
}
// Create live thread for events
Resource: "Live Threads"
Operation: "Create Live Thread"
Additional Options: {
"title": "Tech Conference 2024 - Live Updates",
"description": "Follow along for real-time updates",
"nsfw": false
}
// Add live updates
Resource: "Live Threads"
Operation: "Add Update"
Thread ID: "live_abc123"
Additional Options: {
"body": "🎯 Keynote starting now with CEO presentation!"
}
// Get user karma breakdown
Resource: "Users"
Operation: "Get Karma Breakdown"
Username: "targetuser"
// Get user's recent activity
Resource: "Users"
Operation: "Get User Posts"
Username: "targetuser"
Additional Options: {
"sort": "new",
"time": "week",
"limit": 50
}
[Scheduler] → [Reddit Enhanced: Get Posts from r/technology] → [Filter by Score] → [Post to Slack/Discord] → [Save to Database]
[Reddit Enhanced: Get Reports] → [Analyze Content] → [Auto-Remove Spam] → [Ban Repeat Offenders] → [Log to Mod Channel]
[Reddit Enhanced: Search Posts by Keyword] → [Sentiment Analysis] → [Alert on Negative Mentions] → [Notify Marketing Team]
[Event Trigger] → [Reddit Enhanced: Create Live Thread] → [Monitor Social Media] → [Reddit Enhanced: Add Updates] → [Close Thread]
Feature Category | Official Node | Reddit Enhanced | Improvement |
---|---|---|---|
Posts | 1 operation | 12 operations | +1100% |
Comments | 0 operations | 10 operations | ∞ (new) |
Subreddits | 0 operations | 15 operations | ∞ (new) |
Users | 1 operation | 8 operations | +700% |
Messaging | 0 operations | 6 operations | ∞ (new) |
Live Threads | 0 operations | 8 operations | ∞ (new) |
Moderation | 0 operations | 12 operations | ∞ (new) |
Awards | 0 operations | 7 operations | ∞ (new) |
Flair Management | 0 operations | 10 operations | ∞ (new) |
Wiki Management | 0 operations | 8 operations | ∞ (new) |
Total Operations | 2 operations | 96 operations | +4700% |
All operations are routed through N8N Tools API for consistent authentication:
Resource | Base Endpoint |
---|---|
Posts | /api/v1/reddit/posts/ |
Comments | /api/v1/reddit/comments/ |
Subreddits | /api/v1/reddit/subreddits/ |
Users | /api/v1/reddit/users/ |
Messaging | /api/v1/reddit/messages/ |
Live Threads | /api/v1/reddit/live/ |
Moderation | /api/v1/reddit/moderation/ |
Awards | /api/v1/reddit/awards/ |
Flair | /api/v1/reddit/flair/ |
Wiki | /api/v1/reddit/wiki/ |
Comprehensive error handling with detailed Reddit-specific messages:
{
"error": "SUBREDDIT_NOT_FOUND",
"success": false,
"resource": "subreddits",
"operation": "getSubredditInfo",
"details": {
"issue": "The specified subreddit does not exist or is private",
"field": "subreddit",
"value": "r/nonexistent"
}
}
Authentication Errors
Permission Errors
Content Policy Violations
Rate Limiting
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by N8N Tools
FAQs
N8N Tools Reddit Enhanced - Complete Reddit API integration for N8N
The npm package n8n-nodes-n8ntools-reddit receives a total of 48 weekly downloads. As such, n8n-nodes-n8ntools-reddit popularity was classified as not popular.
We found that n8n-nodes-n8ntools-reddit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.