# Sitemap Page Count Bulk

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

Counts the number of URLs declared across sitemaps for up to 20 domains in a single concurrent batch call, returning results in input order with per-item error fields.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/sitemap-count
- Price: $0.1/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-bulk-1fb61328
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-M4PyBP99RyRtTlHZdF8y

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-bulk-1fb61328
```

Example prompt: Can you check how many pages each of these 10 competitor websites declares in their sitemaps — all in one go: example1.com, example2.com, example3.com, example4.com, example5.com, example6.com, example7.com, example8.com, example9.com, example10.com?

## When to prefer this

Use this endpoint when you have a list of 2–20 domains and need their sitemap URL counts in a single efficient call. It is preferable over calling the single /site/sitemap-count endpoint repeatedly because it processes all domains concurrently and returns results in input order with structured per-item error handling. Ideal for SEO audits, competitive benchmarking, and data enrichment pipelines where you need bulk sitemap size data quickly.

## Known failure modes

- Domain unreachable or no sitemap.xml found — per-item error field populated, count null
- Malformed or non-standard sitemap format causes parsing failure
- Batch exceeds 20-domain limit — request rejected
- Rate limiting or payment failure blocks the call
- Timeout on slow-responding domains causes partial results with errors

## How this service works

Bulk sitemap page count: up to 20 domains in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /site/sitemap-count endpoint (How many pages does a site declare? Counts URLs across sitemap). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An array of results in the same order as the input domains, each containing the domain name, the total count of URLs declared across all its sitemaps, and a per-item error field (null on success). A summary failure count is also returned indicating how many domains could not be resolved or parsed.

## 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-bulk-1fb61328/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)
