# URL Redirect Chain Resolver

> URL Redirect Chain Resolver is a paid API for AI agents from url-intel.bowling-anthony.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Follows a URL's full redirect chain hop by hop, returning every intermediate step, the final destination URL, whether the chain crossed hosts, and a tracking-parameter-stripped clean version of the final URL.

## Facts

- Endpoint: GET https://url-intel.bowling-anthony.workers.dev/resolve
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/url-redirect-chain-resolver-21a9e7cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9O1YQ-ZbH8Eo4YikxcyI4

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 url-redirect-chain-resolver-21a9e7cc
```

Example prompt: Can you trace all the redirect hops for https://bit.ly/3xYzAbc and tell me the final destination URL, whether it crossed any different hosts along the way, and give me a clean version with tracking parameters removed?

## When to prefer this

Choose this endpoint when you need to understand the full redirect journey of a URL, not just the final destination — especially when detecting host-crossing, auditing affiliate or marketing links, unwrapping short URLs for security review, or obtaining a tracking-parameter-free clean URL. Prefer this over a simple HEAD request when hop-by-hop transparency or UTM stripping is required.

## Known failure modes

- URL does not redirect — returns single-hop result with no chain
- Target URL is unreachable or times out — returns error with last successful hop
- Infinite redirect loop detected — returns error after max hops
- Malformed input URL — returns validation error
- DNS resolution failure for target host — returns network error

## How this service works

Follow a URL's redirect chain hop by hop: every step, the final destination, whether it crossed hosts, and a copy with tracking parameters stripped.

## Output

Returns a structured breakdown of each hop in the redirect chain (status code, URL at each step), the final resolved destination URL, a boolean or indicator of whether the chain crossed different hostnames, and a cleaned version of the final URL with tracking/UTM parameters removed.

## 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"
    }
   },
   "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/url-redirect-chain-resolver-21a9e7cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from url-intel.bowling-anthony.workers.dev](https://www.zero.xyz/host/url-intel.bowling-anthony.workers.dev/llms.txt)
