# API Zavod HTTP Redirect Chain Inspector

> API Zavod HTTP Redirect Chain Inspector is a paid API for AI agents from it.finlandfoxvpn.shop, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Inspects and returns the full HTTP redirect chain for a given URL, showing each hop from source to final destination

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/web/redirects
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-zavod-http-redirect-chain-inspector-399254cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dzriv3VWri9Ll_NwWaIZK

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 api-zavod-http-redirect-chain-inspector-399254cd
```

Example prompt: Can you trace the full redirect chain for https://bit.ly/3xKjP2q using a GET request and tell me how many hops there are and where it finally lands?

## When to prefer this

Choose this endpoint when you specifically need to inspect the full ordered redirect chain of a URL — not just whether a site is up, but every intermediate hop and the final landing URL. It pairs naturally with the sibling HTTP status checker for broader diagnostics, but this endpoint is the right choice when redirect depth, redirect loops, or final destination verification is the primary concern. Prefer it over general website metadata endpoints when redirect path analysis is the focus.

## Known failure modes

- Invalid or malformed URL returns an error — input must be a valid URI
- Unreachable or offline host may return a timeout or connection error
- Very long redirect chains may be truncated or cause timeout
- Redirect loops may be detected and halted with an error
- Non-HTTP URLs (ftp://, etc.) may not be supported given the HTTP-specific scope

## How this service works

HTTP redirect chain inspection / Проверка цепочки редиректов

## Output

Returns a JSON object containing the original URL, the final destination URL after all redirects, the total redirect count, and an ordered array representing each step in the redirect chain (the intermediate hops).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "цепочка": [],
  "исходный_url": "https://example.com/",
  "количество": 0,
  "конечный_url": "https://example.com/"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-http-redirect-chain-inspector-399254cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from it.finlandfoxvpn.shop](https://www.zero.xyz/host/it.finlandfoxvpn.shop/llms.txt)
