# Third-Party Scripts Bulk Inventory

> Third-Party Scripts Bulk Inventory 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).

Concurrently analyzes up to 20 URLs for third-party scripts loaded on each page, returning an ordered inventory with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/third-parties
- 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/third-party-scripts-bulk-inventory-c978c98d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gKeaH0Tfajnvp3U3CTW3j

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 third-party-scripts-bulk-inventory-c978c98d
```

Example prompt: Can you check all these 15 URLs for third-party scripts being loaded — I want a full inventory of every external script source on each page so I can audit our tracking and dependencies?

## When to prefer this

Use this endpoint when you have a list of 2–20 URLs and need third-party script inventories for all of them efficiently. It processes all URLs concurrently and returns results in input order, making it far more efficient than looping the single-URL endpoint. Ideal for batch audits, portfolio analysis, or any agent workflow that has accumulated a list of pages to check.

## Known failure modes

- Invalid or unreachable URLs return per-item errors rather than failing the whole batch
- Exceeding 20 URLs in a single call may result in rejection or truncation
- Network timeouts on individual URLs contribute to the failure count
- Malformed input parameters return a top-level error
- Payment not processed results in 402 response blocking the call

## How this service works

Bulk third party scripts: 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/third-parties endpoint (Third-party script inventory). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input URL order, where each item contains a full third-party script inventory (matching the single-URL endpoint output) plus a per-item error field if the URL failed. A top-level failure count indicates how many of the batch items errored.

## 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/third-party-scripts-bulk-inventory-c978c98d/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)
