Алексей СпиновMost websites have sitemaps, but finding them can be tricky. Here's a parser that auto-discovers. ...
Most websites have sitemaps, but finding them can be tricky. Here's a parser that auto-discovers.
robots.txt for Sitemap: directive/sitemap.xml, /sitemap_index.xml
Sitemap indexes contain links to child sitemaps:
<sitemapindex>
<sitemap><loc>https://site.com/sitemap-1.xml</loc></sitemap>
<sitemap><loc>https://site.com/sitemap-2.xml</loc></sitemap>
</sitemapindex>
Parse each child, aggregate all URLs.
{
"url": "https://stripe.com/sitemap.xml",
"lastmod": "2026-03-15",
"changefreq": "weekly",
"priority": 0.8
}
Stripe.com has 4,817 URLs across 6 child sitemaps.
I built a Sitemap Parser on Apify — search knotless_cadence sitemap.