# Mixed Content Check Watch

> Mixed Content Check Watch is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Monitors a URL for changes in its mixed content (HTTP resources on HTTPS pages) status, returning diffs between the current and previous check results.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/site/mixed-content
- Price: $0.02/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-watch-fec3ea82
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5tzHLprvmPnJiVz442EMT

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-watch-fec3ea82
```

Example prompt: Keep an eye on https://example.com for me and let me know if its mixed content status ever changes — I want to see exactly what fields changed and what they changed from and to.

## When to prefer this

Use this endpoint when you need to detect changes in a site's mixed content posture over time rather than just a one-time snapshot. Ideal for scheduled monitoring pipelines, CI/CD regression detection, or compliance audits where you want to be notified only when something actually changes, with precise field-level diffs.

## Known failure modes

- URL is unreachable or returns an error — check may fail or return an error status
- First call for a URL has no previous result to compare against — changed flag may be false or undefined
- URL redirects in unexpected ways — check may analyze the final destination rather than the input URL
- 90-day retention window exceeded — previous result no longer available for comparison

## How this service works

Change watch for mixed content check: runs the check and compares it with the result from your previous call for the same url (kept 90 days), returning the current answer, changed true/false, exactly which fields changed with before/after values, and when it was last seen. Call it on a schedule to be told when mixed content check changes. $0.01 per check.

## Output

Returns the current mixed content check result for the URL, a boolean indicating whether it changed since the last call, a list of exactly which fields changed with their before and after values, and the timestamp of when the result was last seen. Previous results are retained for 90 days.

## 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-watch-fec3ea82/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)
