# Scrape Reddit subreddit posts — no login, no API key

**Use case:** 

Pull posts from any subreddit as structured data. Get titles, body text, scores, authors, and image URLs. No login required. Export as JSON, CSV, or Excel.

## Input

```json
{
  "subreddit": "NoStupidQuestions",
  "sort": "rising",
  "timeFilter": "week",
  "maxResults": 10,
  "includeComments": false,
  "maxCommentsPerPost": 10,
  "maxReplyExpansions": 1,
  "enableAI": false
}
```

## Output

```json
{
  "id": {
    "label": "Post ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "subredditName": {
    "label": "Subreddit",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "createdAt": {
    "label": "Created At",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "commentCount": {
    "label": "Comments",
    "format": "integer"
  },
  "upvoteRatio": {
    "label": "Upvote Ratio",
    "format": "number"
  },
  "postType": {
    "label": "Type",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "body": {
    "label": "Body",
    "format": "string"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "summary": {
    "label": "AI Summary",
    "format": "string"
  },
  "comments": {
    "label": "Comments Data",
    "format": "array"
  }
}
```

## About this Actor

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