Enter your domain and we'll crawl internal links, build a valid sitemap.xml, and hand it back — ready to drop at your domain root. Free. No signup.
A sitemap.xml is a simple XML file listing the URLs on your site that you want search engines and AI crawlers to discover. It lives at the root of your domain (https://yoursite.com/sitemap.xml) and is the standard mechanism Google, Bing, and increasingly AI crawlers like ChatGPT-User and ClaudeBot use to find your pages efficiently.
Without one, crawlers have to follow links one page at a time — slower, less thorough, and prone to missing deep pages. With one, every URL you care about gets discovered on day one.
<a href> links.robots.txt. URLs the site disallows for our user-agent are omitted from the sitemap.<lastmod> when the server provides a Last-Modified header.sitemap.xml and place it at your domain root (same place as robots.txt).robots.txt so crawlers find it automatically: Sitemap: https://yoursite.com/sitemap.xmlYes — it follows the sitemaps.org schema and includes the required <loc> elements for every URL. Both search engines accept it without modification.
Yes — the textarea is fully editable. Remove URLs you don't want crawled, add ones the discovery missed, or reorder anything. Human review always improves automated output.
Partially. We fetch the server-rendered HTML, which means Single-Page Apps that only render via client-side JS won't expose their internal routes to our crawler. For SPAs, use your framework's built-in sitemap generation (Next.js, Astro, Nuxt all have one) or export your route list manually.
The slider caps at 200 pages per run, which covers most small-to-medium sites. Large content sites (1,000+ pages) should generate their sitemap from their CMS or framework rather than by crawling.