# Reddit Personal Finance Advice Posts Scraper

**Use case:** 

Scrape r/personalfinance posts and comments with scores, authors and text for money advice research and audience insights.

## Input

```json
{
  "maxItems": 50,
  "includeComments": true,
  "mode": "subreddit",
  "subreddits": [
    "personalfinance"
  ],
  "sort": "hot",
  "time": "day",
  "commentsLimit": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "selftext": {
    "label": "Post text",
    "format": "string"
  },
  "body": {
    "label": "Comment text",
    "format": "string"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "numComments": {
    "label": "Comments",
    "format": "integer"
  },
  "totalAwards": {
    "label": "Awards",
    "format": "integer"
  },
  "linkFlairText": {
    "label": "Flair",
    "format": "string"
  },
  "permalink": {
    "label": "Permalink",
    "format": "string"
  },
  "depth": {
    "label": "Depth",
    "format": "number"
  },
  "isSubmitter": {
    "label": "OP",
    "format": "string"
  },
  "createdAt": {
    "label": "Created",
    "format": "string"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

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