# Notion Student Planner Extractor

**Use case:** 

Extract Notion student planner templates with creators, descriptions, images, categories, ratings, and install signals.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.notion.com/templates/category/student-planner"
    }
  ],
  "maxItems": 50,
  "maxPagesPerStartUrl": 3,
  "includeDetails": true,
  "requestDelayMs": 250
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Template URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "categoryName": {
    "label": "Category",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "creatorName": {
    "label": "Creator",
    "format": "text"
  },
  "creatorUsername": {
    "label": "Creator username",
    "format": "text"
  },
  "madeBy": {
    "label": "Made by",
    "format": "text"
  },
  "duplicateCount": {
    "label": "Duplicate count",
    "format": "number"
  },
  "installationCount": {
    "label": "Installation count",
    "format": "number"
  },
  "ratingAverage": {
    "label": "Rating average",
    "format": "number"
  },
  "sourceType": {
    "label": "Source type",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Notion Templates Marketplace Scraper](https://apify.com/automation-lab/notion-templates-marketplace-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/notion-templates-marketplace-scraper) to learn more, explore other use cases, and run it yourself.