Reddit Post Scraper
Extract data from any Reddit post including upvotes, comments, and author. Optionally scrape comments too.
GET/api/scrape-reddit
20 requests/minute
🔌 API Access
Use this tool programmatically in your applications. Extract post data from Reddit URLs including title, upvotes, comments count, author, and optionally the comments themselves.
Rate Limit: 20 requests/minute

Free to use • No authentication required • Fair usage policy applies

/api/scrape-reddit?url=https://www.reddit.com/r/programming/comments/xyz&includeComments=true
curl "https://yoursite.com/api/scrape-reddit?url=https://www.reddit.com/r/programming/comments/xyz&includeComments=true"
fetch('/api/scrape-reddit?url=https://www.reddit.com/r/programming/comments/xyz&includeComments=true')
  .then(res => res.json())
  .then(data => console.log(data));

Need higher rate limits or have questions?

GET/api/scrape-reddit
20 requests/minute
🔌 API Access
Use this tool programmatically in your applications. Extract post data from Reddit URLs including title, upvotes, comments, and author information.
Rate Limit: 20 requests/minute

Free to use • No authentication required • Fair usage policy applies

/api/scrape-reddit?url=https://www.reddit.com/r/programming/comments/xyz
curl "https://yoursite.com/api/scrape-reddit?url=https://www.reddit.com/r/programming/comments/xyz"
fetch('/api/scrape-reddit?url=https://www.reddit.com/r/programming/comments/xyz')
  .then(res => res.json())
  .then(data => console.log(data));

Need higher rate limits or have questions?