Use SitemapKit in n8n workflows to automate sitemap monitoring, content discovery, and SEO audits. Connect sitemap data to 400+ other services.
Use the secret or environment-variable mechanism provided by your automation setup. Never expose the key in client-side code.
Adapt the request shown in the n8n example below and send the target domain from a trusted server process.
Handle discovered sitemap files, extracted URLs, lastmod values, truncation flags, and API errors before passing the result downstream.
// 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 }));Check authentication, endpoints, response fields, and limits.
Preview the URL extraction result before writing integration code.
See how teams use sitemap data in SEO and engineering workflows.
Look up lastmod, sitemap indexes, and other response concepts.
100 free API calls/month. No credit card required.