# Monitor E-commerce Product Page Changes via Sitemap URLs

**Use case:** 

Regularly extract product URLs from your e-commerce sitemap to detect new products, updated pages, or removed items. This enables proactive management of your p

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.adidas.com/us/sitemap_index.xml"
    }
  ],
  "maxUrls": 0,
  "followSitemapIndexes": true,
  "urlFilterInclude": ".*\\/us\\/p\\/[^\\/]+\\.html"
}
```

## 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.