# redirect-audit-watch

> redirect-audit-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 redirect audit results for a domain on a schedule, detecting and reporting when redirect behavior changes between calls.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/site/redirect-audit
- 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/redirect-audit-watch-3a5852b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vzEYuNv8-z2xahrCMZs9q

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 redirect-audit-watch-3a5852b0
```

Example prompt: Keep an eye on the redirect audit for example.com and let me know if anything changes compared to the last time you checked — I want to see exactly which fields changed and what the before and after values were.

## When to prefer this

Use this endpoint when you need to be notified of changes in redirect behavior for a domain over time rather than just getting a one-time snapshot. It is ideal for scheduled monitoring workflows, post-deployment verification, and SEO auditing pipelines where detecting drift matters. Prefer the non-watch redirect-audit endpoint for a single one-off check, and the bulk variant for checking many domains at once without change tracking.

## Known failure modes

- Domain not yet seen — no previous result to compare against, so 'changed' may default to false or null on first call
- Domain is unreachable or returns errors during redirect audit
- Invalid or missing domain parameter causes request rejection
- Previous result expired after 90-day retention window, resetting the comparison baseline
- Network timeout during redirect chain resolution

## How this service works

Change watch for redirect audit: runs the check and compares it with the result from your previous call for the same domain (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 redirect audit for a domain changes. $0.01 per check.

## Output

Returns the current redirect audit result for the domain, a boolean 'changed' flag indicating whether results differ from the previous call (stored up to 90 days), a detailed list of exactly which fields changed with before and after values, and a timestamp of when the domain was last seen.

## 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/redirect-audit-watch-3a5852b0/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)
