# Scrape Reddit Posts About Side Hustle

**Use case:** 

Scrape Reddit posts about side hustle. Get post titles, scores, comments, subreddits, and URLs by keyword. Export to JSON, CSV, or Excel.

## Input

```json
{
  "keyword": "side hustle",
  "limit": 100,
  "sort": "top",
  "time_filter": "year"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "num_comments": {
    "label": "Comments",
    "format": "number"
  },
  "permalink": {
    "label": "Permalink",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "run_id": {
    "label": "Run ID",
    "format": "text"
  }
}
```

## About this Actor

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