# Multi-Sitemap Content Inventory

**Use case:** 

Combine multiple XML sitemaps into one URL inventory for migrations, crawler seeds, indexing checks, and SEO QA.

## Input

```json
{
  "sitemapUrls": [
    "https://crawlee.dev/sitemap.xml",
    "https://docs.apify.com/sitemap.xml"
  ],
  "maxUrls": 10000
}
```

## Output

```json
{
  "url": {
    "label": "URL"
  },
  "sitemapSource": {
    "label": "Sitemap Source"
  },
  "lastModified": {
    "label": "Last Modified"
  },
  "changeFrequency": {
    "label": "Frequency"
  },
  "priority": {
    "label": "Priority"
  },
  "imageCount": {
    "label": "Images"
  }
}
```

## About this Actor

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