# Scrape n8n Marketing Workflow Templates

**Use case:** 

Extract n8n templates in the Marketing category including names, categories, node counts, creator metadata, and template URLs.

## Input

```json
{
  "searchQuery": "",
  "categories": [
    "Marketing"
  ],
  "maxItems": 25,
  "includeWorkflowJson": true,
  "sortBy": "recent",
  "pageSize": 50
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "text"
  },
  "nodeCount": {
    "label": "Nodes",
    "format": "number"
  },
  "totalViews": {
    "label": "Views",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "text"
  },
  "creatorName": {
    "label": "Creator",
    "format": "text"
  },
  "templateUrl": {
    "label": "Template URL",
    "format": "link"
  }
}
```

## About this Actor

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