# Find Blog Sitemaps & Indexed Posts

**Use case:** 

Locate specific sitemaps related to a blog section of a website and extract the total count of blog posts indexed. This helps in monitoring content growth and e

## Input

```json
{
  "url": "https://blog.hubspot.com",
  "followIndexes": true,
  "maxSitemaps": 20,
  "fetchUrlCounts": true,
  "emitUrls": false,
  "maxUrls": 10000
}
```

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