# Mixed Content Check Bulk

> Mixed Content Check 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).

Checks up to 20 URLs concurrently for mixed content (HTTP resources on HTTPS pages) in a single API call, returning per-item results with error fields and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/mixed-content
- 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/mixed-content-check-bulk-746bd7c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ryb4vJc8UZM-0kYx056ob

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 mixed-content-check-bulk-746bd7c2
```

Example prompt: Check all these URLs for mixed content issues in one go: https://example.com, https://shop.example.com, https://blog.example.com — I need to know which ones are loading HTTP resources on HTTPS pages.

## When to prefer this

Use this endpoint when you have a list of 2–20 URLs to audit for mixed content and want to avoid sequential single-URL calls. It processes all URLs concurrently and returns results in input order, making it the most efficient option for batch workflows, CI/CD pipelines, or agent-driven site audits. Prefer the single /site/mixed-content endpoint only for one-off checks.

## Known failure modes

- URL unreachable or returns non-200 status — per-item error field populated
- Malformed or non-HTTP(S) URL in the input list — per-item error
- Batch exceeds 20 URL limit — request rejected
- Network timeout fetching a URL — per-item error recorded, other items still processed
- Payment not completed — 402 response, no results returned

## How this service works

Bulk mixed content check: 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/mixed-content endpoint (Mixed content check). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

Returns an ordered array of results corresponding to each input URL, where each item includes the mixed content check outcome (matching the single-URL /site/mixed-content response), a per-item error field if the check failed, and an overall count of how many URLs in the batch failed.

## 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/mixed-content-check-bulk-746bd7c2/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)
