Reddit Thread Fetcher avatar
Reddit Thread Fetcher
Under maintenance

Pricing

from $4.00 / 1,000 results

Go to Apify Store
Reddit Thread Fetcher

Reddit Thread Fetcher

Under maintenance

πŸ’¬ Fetch Reddit thread data using the public JSON API - zero friction, no authentication required! Perfect for social media monitoring and content research.

Pricing

from $4.00 / 1,000 results

Rating

5.0

(1)

Developer

SimplifySME Toolbox

SimplifySME Toolbox

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

4 days ago

Last modified

Share

πŸ’¬ Fetch Reddit thread data using the public JSON API - zero friction, no authentication required! Perfect for social media monitoring and content research.


πŸ“Ί What It Extracts

  • Thread Metadata: ID, title, author, subreddit, score, upvotes, downvotes
  • Comment Data: All comments with author, body, score, and timestamps
  • Thread Structure: Nested comment replies and hierarchies
  • Statistics: Total comment count and engagement metrics

πŸš€ Key Features

FeatureDescription
πŸ”“ Public APIUses Reddit's public JSON API (append .json to URL)
🚫 No AuthenticationZero friction - no API keys required
πŸ“Š Complete ThreadsFetches all comments and nested replies
⚑ Fast PerformanceDirect API access for quick data retrieval
πŸ”„ Flexible ParsingHandles various Reddit thread formats
πŸ“ˆ Structured OutputClean JSON format with thread hierarchy

πŸ“₯ Input

Required

  • threadUrl (string): The Reddit thread URL
    • Example: "https://www.reddit.com/r/programming/comments/abc123/title/"
    • Supports any Reddit thread URL format

πŸ“€ Output

Returns comprehensive thread data:

Thread Metadata

{
"thread": {
"id": "abc123",
"title": "Thread Title",
"author": "username",
"subreddit": "programming",
"score": 150,
"upvotes": 200,
"downvotes": 50,
"created": 1704067200,
"createdDate": "2024-01-01T00:00:00.000Z",
"url": "https://www.reddit.com/r/programming/comments/abc123/title/",
"permalink": "/r/programming/comments/abc123/title/",
"numComments": 45,
"selftext": "Thread text content..."
}
}

Comments Array

{
"comments": [
{
"id": "def456",
"author": "commenter",
"body": "Comment text...",
"score": 10,
"created": 1704067300,
"createdDate": "2024-01-01T00:01:40.000Z",
"permalink": "/r/programming/comments/abc123/title/def456/",
"replies": [
{
"id": "ghi789",
"author": "replier",
"body": "Reply text...",
"score": 5
}
]
}
],
"totalComments": 45
}

πŸ’‘ Use Cases

  • βœ… Social Media Monitoring - Track discussions and trends
  • βœ… Content Research - Find relevant discussions and insights
  • βœ… Sentiment Analysis - Analyze comment sentiment and engagement
  • βœ… Community Insights - Understand community discussions
  • βœ… Trend Tracking - Monitor popular topics and threads
  • βœ… Data Collection - Collect data for research and analytics

βš™οΈ Technical Details

  • API Source: Reddit's public JSON API (append .json to thread URL)
  • No Authentication: Public API - no keys required
  • Data Format: JSON responses from Reddit API
  • Error Handling: Validates URLs and handles missing threads
  • Performance: Fast API-based extraction without browser overhead

πŸ“ Example Usage

Basic Thread Fetching

{
"threadUrl": "https://www.reddit.com/r/programming/comments/abc123/title/"
}

Different Reddit Formats

{
"threadUrl": "https://old.reddit.com/r/programming/comments/abc123/title/"
}

⚠️ Important Notes

  • Uses Reddit's public JSON API - zero friction!
  • The actor automatically appends .json to the thread URL
  • Works with both www.reddit.com and old.reddit.com URLs
  • Some threads may have deleted comments (shown as [deleted])
  • The API is rate-limited but generally very permissive