# AI Research Post Extractor for r/MachineLearning

**Use case:** 

Extract top AI research posts from r/MachineLearning. Receive a comprehensive dataset including titles, authors, and links to posts.

## Input

```json
{
  "subreddits": [
    "MachineLearning"
  ],
  "sort": "top",
  "timeFilter": "month",
  "maxPostsPerSub": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "postId": {
    "label": "Post ID",
    "format": "string"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "permalink": {
    "label": "Permalink",
    "format": "string"
  },
  "selftext": {
    "label": "Self Text",
    "format": "string"
  },
  "createdAt": {
    "label": "Created At",
    "format": "string"
  }
}
```

## About this Actor

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