# Crawl Shopify Sitemap URLs for SEO Analysis

**Use case:** 

Extract up to 5000 URLs from the Shopify sitemap.xml. Get a comprehensive list for SEO audits and data analysis.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://kith.com/sitemap.xml"
    }
  ],
  "maxUrls": 5000,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "lastmod": {
    "label": "Last Modified",
    "format": "string"
  },
  "changefreq": {
    "label": "Change Frequency",
    "format": "string"
  },
  "priority": {
    "label": "Priority",
    "format": "number"
  },
  "sourceSitemap": {
    "label": "Source Sitemap",
    "format": "string"
  }
}
```

## About this Actor

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