# Redirect Audit

> Redirect Audit is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Audits how all four URL variants (http://, https://, www, apex) of a domain resolve, including hop counts, status codes, and whether they converge on a single canonical HTTPS URL.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/redirect-audit
- Price: $0.01/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-cc48e9ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_he82Y0TPHi6Fpsfn56Qos

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-cc48e9ad
```

Example prompt: Can you run a redirect audit on example.com and tell me whether the http, https, www, and apex variants all converge on a single canonical HTTPS URL, and how many hops each takes to get there?

## When to prefer this

Choose this endpoint when you need to audit redirect behavior across all four standard URL entry points for a domain, diagnose SEO canonical URL issues, detect split traffic, or verify that HTTP-to-HTTPS and www-to-apex redirects are correctly configured. It is more thorough than a simple URL redirect follower because it simultaneously tests all four variants and checks for convergence.

## Known failure modes

- Domain does not exist or is unreachable — returns an error or empty chain
- Domain has a redirect loop — chain may exceed hop limit with a loop-detection error
- Firewall or bot-blocking may prevent redirect chain from being followed
- Timeout on slow-responding domains
- Malformed domain input may return a validation error

## How this service works

Redirect audit for a domain: how http://, https://, www and apex variants each resolve, where they end, hop counts and status codes, and whether all four converge on a single canonical HTTPS URL. Catch split traffic and SEO dilution. $0.01 per domain.

## Output

Returns the full redirect chain for each of the four URL variants (http://, https://, www, apex), including each hop's URL and HTTP status code, total hop count, the final destination URL, and whether all four variants converge on a single canonical HTTPS URL. Also flags SEO dilution or split-traffic issues.

## 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-cc48e9ad/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)
