Crawl. Format. Index.
Automate the creation and maintenance of your sitemap.xml. Our AI agent crawls your site, structures the data, and delivers a perfectly formatted sitemap to boost your SEO.
sitemap.xml
import { sitemap } from '@do-sdk/sitemap-xml'; // Generate a sitemap by crawling a root URL const mySitemap = await sitemap.generate({ url: 'https://example.com', options: { follow_robots_txt: true, last_modified: 'auto' } }); // Returns a URL to the hosted sitemap.xml file console.log(mySitemap.url); // Output: "https://cdn.do/sitemaps/a1b2c3d4.xml"