# sitemap-urls-bulk

> sitemap-urls-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).

Fetches sitemap URLs for up to 20 domains in a single concurrent batch call, returning results in input order with per-item errors and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/sitemap
- 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-urls-bulk-77eb0bed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__aNcUJkyU7Xw4-nRHD6F7

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-urls-bulk-77eb0bed
```

Example prompt: Can you fetch the sitemap URLs for all 15 sites on my list in one go — I need them returned in the same order I gave them, with any failures flagged per site?

## When to prefer this

Choose this endpoint when you have a list of 2–20 domains and need sitemap URLs for all of them efficiently. It avoids making sequential single-domain calls by processing all items concurrently and returning results in input order. Prefer this over the single /site/sitemap endpoint whenever you have more than one domain to process in a workflow or pipeline.

## Known failure modes

- Individual URLs that are unreachable or have no sitemap return a per-item error field rather than failing the whole batch
- Exceeding 20 URLs in a single call may result in rejection or truncation
- Invalid or malformed URLs in the input list will produce per-item errors
- Network timeouts on individual domains are captured as per-item failures
- Payment not received or insufficient USDC balance causes the entire call to fail with a 402 response

## How this service works

Bulk sitemap urls: up to 20 urls 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 endpoint (Sitemap URL list). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input URL list. Each item contains the sitemap URL list for that domain (same as the single /site/sitemap endpoint) plus a per-item error field if the lookup failed. A top-level count of failures is included. Results are returned in the same order as the input.

## 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-urls-bulk-77eb0bed/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)
