# SiteSignal Public HTTP Redirect Chain Snapshot

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

Traces up to three public HTTP redirects and reports status semantics, cross-origin hops, HTTPS downgrades, and final-response evidence for a given URL.

## Facts

- Endpoint: GET https://phases-prot-shine-royal.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-3af545b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_boafDKyz-xUgGUzhWTXay

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-3af545b1
```

Example prompt: Can you trace the redirect chain for https://bit.ly/3xampleLink and tell me if it goes through any cross-origin hops or downgrades from HTTPS to HTTP along the way?

## When to prefer this

Choose this endpoint when you need to inspect the full redirect path of a public URL — particularly to detect cross-origin hops, HTTPS downgrades, or unexpected final destinations — without needing full page content. It is ideal for security auditing of short links, verifying marketing redirects, or debugging redirect chains. For full page content or DNS-level inspection, prefer sibling endpoints like URL & Webpage Evidence or Public DNS Record Inventory.

## Known failure modes

- Invalid or malformed URL returns a validation error
- Non-public or firewalled URLs may timeout or return connection errors
- URLs with more than three redirects are truncated at three hops
- Non-HTTP/HTTPS schemes (e.g. ftp://) are rejected
- Very slow target servers may cause timeout failures

## 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 HTTP redirect hops from the provided URL, including HTTP status codes for each hop, whether any hop crosses to a different origin (cross-origin hop), whether any hop downgrades from HTTPS to HTTP, and evidence from the final response such as its URL, status, and content 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-3af545b1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phases-prot-shine-royal.trycloudflare.com](https://www.zero.xyz/host/phases-prot-shine-royal.trycloudflare.com/llms.txt)
