# Scrape comments from a Reddit user

**Use case:** 

Scrape comments from any Reddit user and export text, scores, post context, subreddits, timestamps, parent IDs, and direct links.

## Input

```json
{
  "username": "spez",
  "usernames": [],
  "contentType": "comments",
  "sort": "new",
  "timeFilter": "all",
  "maxItemsPerUser": 100
}
```

## Output

```json
{
  "_username": {
    "label": "Username",
    "format": "text"
  },
  "_status": {
    "label": "Status",
    "format": "text"
  },
  "_content_type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "selftext": {
    "label": "Self Text",
    "format": "text"
  },
  "body": {
    "label": "Comment Body",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "num_comments": {
    "label": "Comments",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "text"
  },
  "created_utc": {
    "label": "Created (UTC)",
    "format": "number"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "link_title": {
    "label": "Post Title",
    "format": "text"
  },
  "is_self": {
    "label": "Self Post",
    "format": "boolean"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "ups": {
    "label": "Upvotes",
    "format": "number"
  },
  "downs": {
    "label": "Downvotes",
    "format": "number"
  },
  "upvote_ratio": {
    "label": "Upvote Ratio",
    "format": "number"
  },
  "over_18": {
    "label": "NSFW",
    "format": "boolean"
  },
  "id": {
    "label": "ID",
    "format": "text"
  },
  "name": {
    "label": "Fullname",
    "format": "text"
  }
}
```

## About this Actor

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