# SiteSignal Public HTTP Redirect Chain Snapshot

> SiteSignal Public HTTP Redirect Chain Snapshot is a paid API for AI agents from obtain-incentive-exceptions-speakers.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, reporting status semantics, cross-origin hops, HTTPS downgrades, and final response evidence.

## Facts

- Endpoint: GET https://obtain-incentive-exceptions-speakers.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-5df21735
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tmGfGk2ogXAp0ZllqlgGe

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-5df21735
```

Example prompt: Can you trace the redirect chain for https://bit.ly/3xampleLink and tell me how many hops it takes, whether any cross-origin redirects happen, and if it ever downgrades from HTTPS to HTTP?

## When to prefer this

Use this endpoint when you need to audit the redirect behavior of a specific public URL — particularly to detect HTTPS downgrades, cross-origin hops, or unexpected redirect destinations. Prefer this over a general URL evidence snapshot when the redirect chain itself is the primary concern rather than page content or headers.

## Known failure modes

- URL is not publicly accessible or returns a connection error
- URL does not redirect at all (no redirect chain to report)
- Redirect chain exceeds three hops (only first three are traced)
- Target URL resolves to a private/internal network address (blocked)
- Malformed or non-URI input causes validation failure

## 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 the sequence of up to three redirect hops including HTTP status codes at each step, whether any hops are cross-origin, whether HTTPS was downgraded to HTTP at any point, and evidence about the final response destination.

## 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-5df21735/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from obtain-incentive-exceptions-speakers.trycloudflare.com](https://www.zero.xyz/host/obtain-incentive-exceptions-speakers.trycloudflare.com/llms.txt)
