# content-stats-bulk

> content-stats-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 content statistics for up to 20 URLs in a single concurrent batch call, returning per-item results in input order with error details and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/page/summary-stats
- 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/content-stats-bulk-eb3dcdde
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3U5WFHoKXSyI_ERyOKSOk

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 content-stats-bulk-eb3dcdde
```

Example prompt: I have a list of 15 article URLs and I need content statistics for all of them at once — can you fetch their page summary stats in bulk and give me the results in the same order, flagging any that failed?

## When to prefer this

Choose this endpoint when you have a list of 2–20 URLs and need content statistics for all of them efficiently in a single API call rather than making sequential individual calls to /page/summary-stats. Ideal for batch enrichment workflows, content audits, or agent pipelines processing multiple pages at once. Use the single /page/summary-stats endpoint if you only have one URL.

## Known failure modes

- Individual URL unreachable or returns non-200 status — per-item error field populated, failure count incremented
- Exceeding 20 URL limit per batch call
- Malformed or invalid URLs in the input list
- Timeout on one or more concurrent URL fetches
- Network-level failures for specific URLs returning partial results

## How this service works

Bulk content stats: 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 /page/summary-stats endpoint (Content statistics for a page). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-URL content statistics results matching the sequence of input URLs, each item containing the same fields as the single /page/summary-stats endpoint plus a per-item error field if that URL failed. A top-level failure count indicates how many items could not be processed.

## 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/content-stats-bulk-eb3dcdde/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)
