# SiteSignal Sitemap Inventory

> SiteSignal Sitemap Inventory is a paid API for AI agents from trinity-throw-thursday-gravity.trycloudflare.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: GET https://trinity-throw-thursday-gravity.trycloudflare.com/x402/sitemap-inventory
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-sitemap-inventory-870f00a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lXvxG7Tx2oweYfsM2S2Ws

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-870f00a0
```

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

## When to prefer this

Use this endpoint when you need a fast, structured extraction of URLs and metadata from a public XML sitemap or sitemap index without building a custom parser. It is ideal for SEO audits, site structure analysis, competitor reconnaissance, and content freshness checks where you need a bounded, reliable URL inventory rather than a full recursive crawl.

## Known failure modes

- Invalid or unreachable sitemap URL returns an error with a description of the fetch failure
- Malformed or non-standard XML sitemap may result in partial or empty inventory
- Sitemap index with too many nested levels may be bounded and return only top-level entries
- Limit exceeded or out-of-range value returns a validation error
- Private or authentication-gated sitemaps return an access error

## 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 inventory including the list of URLs found in the sitemap (up to the requested limit), their last-modified timestamps where available, the hostname, and path-prefix groupings, enabling downstream URL discovery, site auditing, or content freshness analysis.

## 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-870f00a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trinity-throw-thursday-gravity.trycloudflare.com](https://www.zero.xyz/host/trinity-throw-thursday-gravity.trycloudflare.com/llms.txt)
