# Scrape Recent Posts from r/programming Archive

**Use case:** 

Extract up to 500 new posts from the r/programming subreddit since January 2025. Retrieve detailed insights and user interactions in CSV or JSON format.

## Input

```json
{
  "subreddits": [
    "programming"
  ],
  "postIds": [],
  "usernames": [],
  "searchQueries": [],
  "commentSearchQueries": [],
  "startUrls": [],
  "sort": "new",
  "afterDate": "2025-01-01",
  "beforeDate": null,
  "minScore": null,
  "userContent": "overview",
  "maxItems": 500,
  "maxItemsPerTarget": 500,
  "requestDelayMs": 1200,
  "maxRetries": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "upvoteRatio": {
    "label": "Upvote %",
    "format": "number"
  },
  "numComments": {
    "label": "Comments",
    "format": "number"
  },
  "createdUtc": {
    "label": "Posted",
    "format": "text"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "url": {
    "label": "Link",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Reddit Historical Archive Scraper - Old Posts by Date](https://apify.com/logiover/reddit-historical-archive-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/reddit-historical-archive-scraper) to learn more, explore other use cases, and run it yourself.