Sitemap Detector avatar
Sitemap Detector

Pricing

$5.00/month + usage

Go to Store
Sitemap Detector

Sitemap Detector

Developed by

Zoro

Zoro

Maintained by Community

Find sitemap URLs fast with our free Sitemap Finder tool. Instantly detect sitemaps from any website for SEO audits, indexing checks, and crawl planning. Improve visibility, site structure insights, and search engine performance in just seconds

5.0 (3)

Pricing

$5.00/month + usage

3

Total users

5

Monthly users

5

Runs succeeded

>99%

Last modified

4 days ago

Effortlessly extract sitemap URLs from any website using this Sitemap Detector actor. It checks both robots.txt and common sitemap paths to find and return all available sitemap files — ideal for SEO audits, site structure analysis, or web crawling.


Features

  • Extract sitemap URLs from robots.txt
  • Check fallback paths like /sitemap.xml, /sitemap_index.xml, etc.
  • Automatically normalizes domain formats (https, www, etc.)
  • Built-in proxy support for stealthy access
  • Fast and lightweight (async with Aiohttp)

Input

The actor accepts a single JSON input:

{
"url": "example.com"
}

url (string) – Required

The website domain or URL you want to extract sitemap(s) from. Examples:

  • example.com
  • https://www.example.com
  • http://example.com/

The input will be automatically normalized, so partial domains are acceptable.


Output

The output is a JSON object containing:

KeyDescription
queryThe original input provided
normalizedNormalized version of the input URL
sitemap_foundBoolean indicating if any sitemaps were found
sitemap_urlsList of discovered sitemap URLs

Example Output:

{
"query": "example.com",
"normalized": "https://example.com",
"sitemap_found": true,
"sitemap_urls": [
"https://example.com/sitemap.xml",
"https://example.com/sitemap_index.xml"
]
}