Export Reddit search results as rows
The Reddit Search Scraper turns a search into a spreadsheet. You submit search terms or reddit.com/search/?q=… URLs - one per line, mixed freely, or uploaded as a CSV, XLSX, TXT or Parquet file - set a limit and pick a sort, and each post comes back as a row: the title, the subreddit it was posted in, the author, its score, how many comments it has, when it was made, and a link. Nine columns, one row per post, downloadable as CSV, Excel or JSON. The service's own description puts it plainly: it returns search results.
The column most often misread is comments, which is a count rather than the comments themselves. Nothing in these nine columns is comment text, and no sort will make it appear - fetching what people wrote is a separate service with its own schema. The word does double duty in the interface, because choosing the Comment count sort posts the value comments, but the sort and the column are both about how many, not about what. The useful way to hold it is that this service is an index of threads and the other is what is inside them.
That count is worth sorting on. Five orders are offered - Relevance, Hot, Top, New and Comment count - and the last is the one that rarely appears elsewhere. A post with a high score is one people agreed with; a post with a high comment count is one people argued about, and for product research, complaints and comparisons the argument is usually where the detail is. subreddit arriving as its own column is the other thing that makes a site-wide search worth running: one query returns posts from wherever they were written, and you group by community afterwards rather than searching each one separately. The limit applies per query, so several terms multiply.
One limit is stated plainly because it changes what to expect from this page. We hold three run exports and none of them contains a post: every content column was empty on all four rows. That is worth stating precisely, because the runs were not misfired - real queries were submitted, both of the shapes the form accepts, and the rows still came back with only query and status filled. So the nine names above are dependable and everything past them is deliberately absent rather than invented. The form also warns that anti-bot sites return a blocked status on the free pool, which is residential-only; that is the platform's own warning about the shared pipeline and it is worth planning for. On the legal side, everything collected is public, but author is a pseudonymous username attached to a real person's posting history - treat it as personal data, and read Reddit's terms before you scale. Start free: your first 500 rows cost nothing and need no credit card, and after that it is $0.002 per row, flat. See pricing for current rates.