# Discover E-commerce Product Sitemaps & URLs

**Use case:** 

Identify all sitemaps on an e-commerce site and optionally extract a sample of product URLs to verify indexing and content quality. This is vital for maintainin

## Input

```json
{
  "url": "https://www.etsy.com",
  "followIndexes": true,
  "maxSitemaps": 75,
  "fetchUrlCounts": true,
  "emitUrls": true,
  "maxUrls": 15000
}
```

## Output

```json
{
  "url": {
    "label": "Sitemap URL",
    "format": "link"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "httpStatus": {
    "label": "HTTP",
    "format": "number"
  },
  "urlCount": {
    "label": "URLs",
    "format": "number"
  },
  "discoveredVia": {
    "label": "Discovered via",
    "format": "text"
  },
  "isCompressed": {
    "label": "Compressed",
    "format": "boolean"
  },
  "byteCount": {
    "label": "Size (B)",
    "format": "number"
  }
}
```

## About this Actor

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