# Sitemap Page Count

> Sitemap Page Count is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Counts URLs declared across a site's sitemap.xml and any sitemap index (up to 5000 URLs), returning the total page count, number of sitemaps visited, and newest lastmod date.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/sitemap-count
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitemap-page-count-d97c01c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v_G1MCX_JiDAAypf8rn7a

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 sitemap-page-count-d97c01c9
```

Example prompt: How many pages does example.com declare in its sitemap? Give me the total URL count, how many sitemaps were checked, and the newest lastmod date.

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.01) estimate of how many pages a website declares in its sitemap without crawling the full site. Ideal for SEO audits, competitive benchmarking, or content volume comparisons. Prefer this over full-crawl approaches when speed and cost matter more than exhaustive accuracy, and when the site likely has a standard sitemap.xml structure.

## Known failure modes

- Site has no sitemap.xml — returns zero or error indicating no sitemap found
- Sitemap is malformed XML — may return partial count or parsing error
- Site blocks robots/sitemap requests — returns access denied or empty result
- Sitemap has more than 5000 URLs — count is capped at 5000 and flagged as an estimate
- Network timeout fetching large sitemap index — partial results or timeout error

## How this service works

How many pages does a site declare? Counts URLs across sitemap.xml and any sitemap index (up to 5000 counted), reports sitemaps visited and newest lastmod. A fast estimate of site size. $0.01 per site.

## Output

Returns the total number of URLs counted across the site's sitemap.xml and any linked sitemap index files (capped at 5000), the number of individual sitemaps visited, and the newest lastmod date found. Provides a fast, non-exhaustive estimate of site size.

## 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",
     "properties": {}
    }
   },
   "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/sitemap-page-count-d97c01c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
