# Webtools Sitemap Discovery & Parser

> Webtools Sitemap Discovery & Parser is a paid API for AI agents from webtools402.176-109-107-191.sslip.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches and parses a website's sitemap (via robots.txt, /sitemap.xml, or a direct XML URL), returning all URLs with lastmod and priority, with sitemap index support.

## Facts

- Endpoint: GET https://webtools402.176-109-107-191.sslip.io/sitemap
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webtools-sitemap-discovery-parser-2a58cc95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y0zkEpkK233zTFl6-ly8M

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability webtools-sitemap-discovery-parser-2a58cc95
```

Example prompt: Can you fetch and parse the sitemap for example.com and give me all the URLs it lists along with their last modified dates and priorities?

## When to prefer this

Use this endpoint when you need to programmatically discover all publicly listed pages of a website without crawling it link-by-link; ideal for SEO audits, content indexing, site mapping, and change monitoring workflows where sitemap.xml is the authoritative page list.

## Known failure modes

- No sitemap found at robots.txt or /sitemap.xml — returns empty or error
- Malformed XML sitemap — parsing may fail or return partial results
- Site blocks the fetching request — returns access denied or timeout
- Sitemap index nesting deeper than one level — only first level is resolved
- URL is not a valid site root or direct .xml link — input validation error

## How this service works

Discover and parse a site's sitemap: pass a site root (found via robots.txt or /sitemap.xml) or a direct .xml. Returns URLs with lastmod/priority; handles <sitemapindex> (one level).

## Output

A structured list of URLs discovered from the site's sitemap, each entry including the page URL, lastmod date (when available), and priority score; sitemap index files are followed one level deep to enumerate child sitemaps.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Site root URL or a direct sitemap .xml URL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webtools-sitemap-discovery-parser-2a58cc95/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from webtools402.176-109-107-191.sslip.io](https://www.zero.xyz/host/webtools402.176-109-107-191.sslip.io/llms.txt)
