# cookie-audit-bulk

> cookie-audit-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).

Audits Set-Cookie headers for up to 20 URLs in a single concurrent batch call, returning per-item cookie analysis in input order with per-item error tracking.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/cookies
- 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/cookie-audit-bulk-f94009d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fe-ZGhEdweSAXjT4b-Sbc

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 cookie-audit-bulk-f94009d1
```

Example prompt: Can you audit the cookies set by these 15 URLs for me — I need to know what cookies each page drops from its Set-Cookie headers, including any flags like Secure or HttpOnly, and flag any that fail?

## When to prefer this

Choose this endpoint when you have a list of 2–20 URLs and want to audit their cookies in one call rather than issuing individual requests. It processes items concurrently and preserves input order, making it ideal for bulk privacy audits, compliance sweeps, or portfolio-wide cookie scans. For a single URL, the sibling /site/cookies endpoint is more direct.

## Known failure modes

- URL is unreachable or times out — per-item error field is populated, item counted in failure total
- Malformed or non-HTTP URL in input — per-item error returned
- Page returns no Set-Cookie headers — item succeeds with empty cookie list
- Batch exceeds 20 URLs — request rejected
- Payment not completed (x402) — endpoint returns 402 Payment Required

## How this service works

Bulk cookie audit: 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/cookies endpoint (Cookie audit from the Set-Cookie headers of a page load). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of cookie audit results matching the input URL order. Each item mirrors the single /site/cookies endpoint response — containing the cookies found from Set-Cookie headers on that page load — plus a per-item error field indicating any fetch or parse failure. A summary count of total failures across the batch is also returned.

## 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/cookie-audit-bulk-f94009d1/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)
