# Search All of Reddit by Keyword for Research

**Use case:** 

Find Reddit posts matching any keyword site-wide, filtered by time and sort order. Export title, body, author, score and permalink to CSV or Excel.

## Input

```json
{
  "search": "project management software",
  "subreddit": "",
  "timeFilter": "month",
  "sortType": "relevance",
  "limit": 25
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Body",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "num_comments": {
    "label": "Comments",
    "format": "number"
  },
  "created_utc": {
    "label": "Created (UTC)",
    "format": "number"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Reddit Keyword Search Scraper – Find Posts Across Reddit](https://apify.com/endspec/reddit-instant-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/endspec/reddit-instant-search-scraper) to learn more, explore other use cases, and run it yourself.