# Extract Specific Category URLs for Targeted SEO Campaigns

**Use case:** 

Filter and extract URLs for a particular product category or content section from a large sitemap. This allows for highly targeted SEO campaigns, link-building 

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.bestbuy.com/sitemap_index.xml"
    }
  ],
  "maxUrls": 500,
  "followSitemapIndexes": true,
  "urlFilterInclude": ".*\\/site\\/laptops-computers.*"
}
```

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