# SiteSignal Public HTTP Redirect Chain Snapshot

> SiteSignal Public HTTP Redirect Chain Snapshot is a paid API for AI agents from supported-rely-thee-portion.trycloudflare.com, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Traces up to three HTTP redirects for a given URL and reports status codes, cross-origin hops, HTTPS downgrade detection, and final response evidence.

## Facts

- Endpoint: GET https://supported-rely-thee-portion.trycloudflare.com/x402/redirect-chain
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-public-http-redirect-chain-snapshot-5fe6c0e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZEjmOysyPVVD7AGQOE6bc

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 sitesignal-public-http-redirect-chain-snapshot-5fe6c0e1
```

Example prompt: Can you trace the redirect chain for https://bit.ly/3xampleLink and tell me how many hops it takes, whether any hop crosses to a different origin, and whether HTTPS gets downgraded anywhere along the way?

## When to prefer this

Use this endpoint when you specifically need to audit HTTP redirect behavior — number of hops, cross-origin transitions, and HTTPS downgrade detection — for a single public URL. It is purpose-built for redirect chain semantics rather than general page content extraction or full website crawling. Prefer this over a generic HTTP fetch when redirect security (e.g. SSL stripping risk) or redirect routing fidelity is the concern.

## Known failure modes

- URL is not publicly reachable — returns an error or empty chain
- URL returns no redirect (200 directly) — chain length is zero
- Redirect chain exceeds three hops — only first three are captured
- Malformed or non-URI input — validation error on the url parameter
- Target server is slow or times out — request may fail or return partial data
- Private/internal URLs (e.g. localhost) — blocked or no meaningful result

## How this service works

Trace up to three public HTTP redirects and report status semantics, cross-origin hops, HTTPS downgrades, and final-response evidence.

## Output

Returns a structured snapshot of up to three redirect hops including HTTP status codes at each step, whether each hop crosses to a different origin (cross-origin flag), whether any hop represents an HTTPS-to-HTTP downgrade, and evidence from the final response such as content type or body indicators.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Public HTTP(S) URL to trace."
      }
     }
    }
   },
   "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/sitesignal-public-http-redirect-chain-snapshot-5fe6c0e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from supported-rely-thee-portion.trycloudflare.com](https://www.zero.xyz/host/supported-rely-thee-portion.trycloudflare.com/llms.txt)
