Fetch and parse any XML sitemap or sitemap index file — returns URLs with their
Fetch and parse any XML sitemap or sitemap index file — returns URLs with their priority, change frequency, and last modified date, follows sitemap indexes one level deep (first 3 child sitemaps), and auto-discovers the sitemap from robots.txt or common paths when given a bare domain — so agents can enumerate site content for crawling, indexing, and SEO analysis.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
951 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://netintel.dev/sitemap-parser/fetch
| Category | Everything else |
|---|---|
| Provider host | netintel.dev |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 951 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"url": "https://www.sitemaps.org/sitemap.xml"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"description": "Maximum number of URLs to return (1-1000, default 100)",
"type": "integer"
},
"url": {
"description": "Sitemap URL or domain name to parse (e.g. https://example.com/sitemap.xml or example.com)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"child_sitemaps_fetched": {
"type": "number"
},
"findings": {
"type": "array"
},
"grade": {
"type": "string"
},
"score": {
"type": "number"
},
"sitemap_type": {
"type": [
"string",
"null"
]
},
"source_url": {
"description": "null when no sitemap was found/parseable (graceful 200 with grade F)",
"type": [
"string",
"null"
]
},
"stats": {
"type": "object"
},
"total_urls": {
"type": "number"
},
"urls": {
"items": {
"type": "object"
},
"type": "array"
},
"urls_returned": {
"type": "number"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}