# Scrape recent Skool posts by date

**Use case:** 

Grab only Skool posts and comments after a given date — perfect for fresh-content pulls. Returns body, author, engagement and URLs.

## Input

```json
{
  "communityUrl": "https://www.skool.com/ai-automation-society",
  "maxItems": 25,
  "includeComments": false,
  "maxCommentsPerPost": 200,
  "postedAfter": "2026-06-01",
  "monitorMode": false,
  "alertOnNewPost": true,
  "concurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "diagnose": false
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "author_handle": {
    "label": "Author",
    "format": "string"
  },
  "likes": {
    "label": "Likes",
    "format": "integer"
  },
  "comment_count": {
    "label": "Comments",
    "format": "integer"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "created_at": {
    "label": "Posted",
    "format": "string"
  },
  "post_url": {
    "label": "Post",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Skool Posts & Comments Scraper — Full Threads & Engagement](https://apify.com/scrapersdelight/skool-posts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/skool-posts-scraper) to learn more, explore other use cases, and run it yourself.