# Track crypto sentiment on Reddit

**Use case:** 

Monitor r/CryptoCurrency & r/Bitcoin — track trending posts, upvotes, comments, and positive/negative sentiment.

## Input

```json
{
  "searchMode": "keyword",
  "searchSort": "relevance",
  "keywords": [
    "Shopify"
  ],
  "subreddits": [
    "webdev",
    "programming",
    "technology"
  ],
  "maxItemsPerSubreddit": 50,
  "minUpvotes": 0,
  "maxAgeHours": 720,
  "includeComments": false,
  "commentDepth": 1,
  "analyzeSentiment": true
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "subreddit_prefixed": {
    "label": "Subreddit (prefixed)",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "num_comments": {
    "label": "Comment Count",
    "format": "integer"
  },
  "sentiment_label": {
    "label": "Sentiment Label",
    "format": "string"
  },
  "created_utc": {
    "label": "Created At",
    "format": "string"
  },
  "reddit_url": {
    "label": "Reddit URL",
    "format": "string"
  }
}
```

## About this Actor

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