# Reddit Sentiment Analysis for Dogecoin

**Use case:** 

Track Reddit posts and comments mentioning Dogecoin and analyze bullish/bearish sentiment. Export to CSV or JSON - no API, free to try.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.reddit.com/r/technology/"
    }
  ],
  "subreddits": [
    "programming",
    "javascript"
  ],
  "searches": [
    "Dogecoin"
  ],
  "searchPosts": true,
  "searchComments": true,
  "searchCommunities": false,
  "searchUsers": false,
  "maxItems": 100,
  "maxPostCount": 25,
  "postsPerSource": 0,
  "maxComments": 10,
  "maxCommunitiesCount": 2,
  "maxUserCount": 2,
  "maxLeaderBoardItems": 5,
  "sort": "new",
  "time": "month",
  "commentSort": "confidence",
  "includeNSFW": false,
  "skipComments": false,
  "skipUserPosts": false,
  "skipCommunity": false,
  "enableDateWindowing": false,
  "ignoreStartUrls": false,
  "proxy": {
    "useApifyProxy": true
  },
  "debugMode": false
}
```

## Output

```json
{
  "body": {
    "label": "Comment",
    "format": "text"
  },
  "username": {
    "label": "Author",
    "format": "text"
  },
  "communityName": {
    "label": "Community",
    "format": "text"
  },
  "upVotes": {
    "label": "Upvotes",
    "format": "number"
  },
  "controversiality": {
    "label": "Controversial",
    "format": "number"
  },
  "depth": {
    "label": "Depth",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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