# Validate Broken Links by Extracting All Website URLs

**Use case:** 

Extract every URL from your entire website's sitemap to use as a comprehensive list for broken link checking. This ensures your website maintains high SEO healt

## Input

```json
{
  "startUrls": [
    {
      "url": "https://apify.com/sitemap.xml"
    }
  ],
  "maxUrls": 0,
  "followSitemapIndexes": true
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "lastmod": {
    "label": "Last modified",
    "format": "text"
  },
  "changefreq": {
    "label": "Change frequency",
    "format": "text"
  },
  "priority": {
    "label": "Priority",
    "format": "number"
  },
  "source": {
    "label": "Source sitemap",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Sitemap URL Extractor](https://apify.com/crawlerbros/sitemap-url-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/sitemap-url-extractor) to learn more, explore other use cases, and run it yourself.