# SiteSignal Sitemap Inventory

> SiteSignal Sitemap Inventory is a paid API for AI agents from phases-prot-shine-royal.trycloudflare.com, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Parses a public XML sitemap or bounded sitemap index and returns a structured inventory of URLs, last-modified timestamps, hostnames, and path prefixes.

## Facts

- Endpoint: GET https://phases-prot-shine-royal.trycloudflare.com/x402/sitemap-inventory
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-sitemap-inventory-5b7237a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jTcDyrn53PWHsT55gk5V-

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 sitesignal-sitemap-inventory-5b7237a2
```

Example prompt: Can you parse the sitemap at https://example.com/sitemap.xml and give me a structured inventory of its URLs, last-modified dates, hostnames, and path prefixes — up to 50 entries?

## When to prefer this

Choose this endpoint when you need a quick, structured inventory of URLs from a specific known sitemap file — especially for SEO audits, content discovery, site structure analysis, or monitoring page freshness. It is ideal for single-sitemap or bounded sitemap-index parsing without needing a full web crawl. Prefer it over general web scrapers when the target site provides a sitemap and you want clean, normalized hostname and path data without parsing raw HTML.

## Known failure modes

- Sitemap URL is not publicly accessible or returns a non-200 status
- URL points to an HTML page rather than a valid XML sitemap
- Sitemap index is too large and results are bounded/truncated at the limit
- Malformed or non-standard XML causes parse failure
- Limit parameter exceeds the maximum of 50
- URL parameter is missing or not a valid URI
- Cloudflare tunnel unavailability causing 5xx errors

## How this service works

Parse one public XML sitemap or bounded sitemap index into a URL, last-modified, hostname, and path-prefix inventory.

## Output

Returns a structured JSON inventory containing a list of entries from the parsed sitemap, each with the full URL, last-modified date (if present), extracted hostname, and path prefix. Also includes aggregate metadata such as total URL count and any bounded truncation info.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      },
      "limit": {
       "type": "integer",
       "default": 50,
       "maximum": 50,
       "minimum": 1
      }
     }
    }
   },
   "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/sitesignal-sitemap-inventory-5b7237a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phases-prot-shine-royal.trycloudflare.com](https://www.zero.xyz/host/phases-prot-shine-royal.trycloudflare.com/llms.txt)
