# Identify Broken Links & Sitemap Issues

**Use case:** 

Scan a website's sitemap and internal links to identify broken pages or misconfigured redirects. Improve user experience and SEO by quickly discovering and fixi

## Input

```json
{
  "startUrl": "https://www.apple.com/sitemap.xml",
  "crawlSitemap": true,
  "followInternalLinks": true,
  "maxPages": 200,
  "extractMedia": false,
  "extractTechStack": false
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "techStack": {
    "label": "Tech stack",
    "format": "array"
  },
  "imageCount": {
    "label": "Images",
    "format": "number"
  },
  "discoveredVia": {
    "label": "Discovered via",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Site Researcher](https://apify.com/crawlerbros/site-researcher) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/site-researcher) to learn more, explore other use cases, and run it yourself.