Reddit Thread Fetcher avatar

Reddit Thread Fetcher

Deprecated

Pricing

from $4.00 / 1,000 results

Go to Apify Store
Reddit Thread Fetcher

Reddit Thread Fetcher

Deprecated

๐Ÿ’ฌ 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

6

Total users

3

Monthly active users

a month 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