# Exact n8n template with importable workflow JSON

**Use case:** 

Fetch a known public n8n workflow template by URL and export its metadata, integrations, creator details, and importable workflow JSON.

## Input

```json
{
  "searchQueries": [
    "slack"
  ],
  "maxItems": 1,
  "categories": [],
  "integrations": [],
  "sort": "relevance",
  "includeWorkflowJson": true,
  "includeAuthorDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "templateId": {
    "label": "Template ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "templateDescription": {
    "label": "Description",
    "format": "text"
  },
  "totalViews": {
    "label": "Views",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "updatedAt": {
    "label": "Updated",
    "format": "date"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "integrations": {
    "label": "Integrations",
    "format": "array"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "authorUrl": {
    "label": "Author URL",
    "format": "link"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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