Test the SitemapKit API directly from your terminal with cURL. Perfect for quick tests, debugging, and shell scripts.
# Discover sitemaps on a domain
curl -X POST https://sitemapkit.com/api/v1/sitemap/discover \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"url": "example.com"}'
# Extract URLs from a specific sitemap
curl -X POST https://sitemapkit.com/api/v1/sitemap/extract \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"url": "https://example.com/sitemap.xml"}'
# Full discovery + extraction in one call
curl -X POST https://sitemapkit.com/api/v1/sitemap/full \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"url": "example.com"}' | jq '.urls | length'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.