# Conduct Corporate Website Content Audit for SEO

**Use case:** 

Extract all textual content from a corporate website for a comprehensive content audit. This helps identify outdated information, broken links, and opportunitie

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.microsoft.com/en-us/"
    }
  ],
  "crawlerType": "playwright:chromium",
  "maxCrawlDepth": 4,
  "maxCrawlPages": 120,
  "maxConcurrency": 5,
  "includeUrlGlobs": [
    "https://www.microsoft.com/en-us/**"
  ],
  "excludeUrlGlobs": [
    "*/account*",
    "*/login*",
    "*/support*",
    "*/legal*"
  ],
  "outputFormat": "html"
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "depth": {
    "label": "Depth",
    "format": "number"
  },
  "httpStatusCode": {
    "label": "Status",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Content Crawler](https://apify.com/crawlerbros/website-content-crawler) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/website-content-crawler) to learn more, explore other use cases, and run it yourself.