Use SitemapKit in n8n workflows to automate sitemap monitoring, content discovery, and SEO audits. Connect sitemap data to 400+ other services.
// n8n HTTP Request Node configuration:
// Method: POST
// URL: https://sitemapkit.com/api/v1/sitemap/full
// Headers:
// Content-Type: application/json
// x-api-key: {{ $credentials.sitemapkitApi.apiKey }}
// Body (JSON):
{
"url": "{{ $json.domain }}"
}
// Then use a Code node to process results:
const urls = $input.all()[0].json.urls;
const blogPosts = urls.filter(u => u.loc.includes('/blog/'));
return blogPosts.map(u => ({ json: u }));sk_live_* API key./api/v1/sitemap/full endpoint to discover and extract all sitemaps from a domain in one call.POST /api/v1/sitemap/discover — Find all sitemaps on a domainPOST /api/v1/sitemap/extract — Parse a sitemap URL and extract all URLsPOST /api/v1/sitemap/full — Discover + extract in one call (recommended)100 free API calls/month. No credit card required.