# Get only brand-new URLs from a sitemap daily

**Use case:** 

Skip content refreshes and receive only URLs that did not exist at the previous run, across up to ten sites, ready to pipe into Slack or a webhook.

## Input

```json
{
  "siteUrls": [
    "https://competitor-a.com",
    "https://competitor-b.com/sitemap.xml"
  ],
  "maxSitemapsPerSite": 10,
  "maxUrlsPerSite": 5000,
  "trackUpdatedPages": false,
  "includeBaselineInOutput": false
}
```

## Output

```json
{
  "siteUrl": {
    "label": "Site URL",
    "format": "string"
  },
  "pageUrl": {
    "label": "Page URL",
    "format": "string"
  },
  "changeType": {
    "label": "Change type",
    "format": "string"
  },
  "lastmod": {
    "label": "Last modified",
    "format": "string"
  },
  "detectedAt": {
    "label": "Detected at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Sitemap Monitor: New Pages & Content Updates](https://apify.com/davidbenittah/sitemap-new-page-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/davidbenittah/sitemap-new-page-monitor) to learn more, explore other use cases, and run it yourself.