Audit sitemaps across a portfolio of sites
For agencies and enterprises managing multiple websites, SitemapKit enables automated sitemap health checks. Verify sitemap structure, check for errors, and monitor sitemap coverage across your entire portfolio.
const sites = ["client1.com", "client2.com", "client3.com"];
for (const site of sites) {
const res = await fetch("https://sitemapkit.com/api/v1/sitemap/full", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY",
},
body: JSON.stringify({ url: site }),
});
const data = await res.json();
console.log(`${site}: ${data.urls.length} URLs, ${data.sitemaps.length} sitemaps`);
}Free tier includes 100 API calls/month. No credit card required.