Is your sitemap.xml reachable?

A sitemap only helps if a crawler can actually fetch it and gets XML back. We request /sitemap.xml and check two things: that it responds 200, and that what came back is real XML rather than your HTML page served at that path.

Free, no sign-up. We fetch one public file and read it. Nothing is stored.

Questions

What exactly does this check?
Two facts, both measured from the one response: whether GET /sitemap.xml returns 200, and whether the body is XML rather than an HTML page. Many SPA and CMS setups answer any unknown path with their HTML shell, so /sitemap.xml returns 200 while a parser gets markup it cannot read.
What does it NOT check?
It does not open every URL listed inside the sitemap, validate lastmod dates, or confirm each page is indexable. It checks that the sitemap file itself is reachable and is XML. The full audit at /audit inspects the pages behind it.
Is this check free?
Yes, no signup. We fetch one public file and read the response. You see the full result, including what failed.

Check something else