# Speer Cyber Defense - HTTP Redirect Trace

> Speer Cyber Defense - HTTP Redirect Trace is a paid API for AI agents from api.speercyberdefense.com, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Traces HTTP redirect chains for a given URL, returning status and summary of the redirect path

## Facts

- Endpoint: GET https://api.speercyberdefense.com/v1/security/redirect/trace
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/speer-cyber-defense-http-redirect-trace-e1c51651
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A1dAFrIi0kX0w8q2ZGX98

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 speer-cyber-defense-http-redirect-trace-e1c51651
```

Example prompt: Can you trace the redirect chain for https://bit.ly/suspicious-link and tell me where it ultimately leads and whether anything looks off?

## When to prefer this

Use this endpoint when you need to trace HTTP redirect chains for a specific URL to detect suspicious redirects, phishing chains, or verify the final destination of a link — especially in a cybersecurity context where micropayment-per-call pricing on Base/Solana is acceptable. Prefer over generic redirect checkers when you need pay-per-use with no failed-call billing.

## Known failure modes

- HTTP 503 if the redirect trace analysis fails — no billing occurs
- Invalid or unreachable URL returns error status
- Missing required 'url' query parameter returns validation error
- Network timeout if target URL is unreachable
- Malformed URL input may cause parsing failure

## How this service works

Cybersecurity micropayments API for AI agents — pay-per-call USDC on Base and Solana (x402 v2). Free utility services under /v1/free/* and gateway select under /v1/gateway/* (Public). Paid cybersecurity analysis, CVE/security news feeds, Base blockchain intelligence, network intel utilities, composite domain/URL reports, research, conversion, verification, and feeds. Failed security analyses are not billed (HTTP 503).

## Output

Returns a JSON object with a boolean 'ok' field, the tool name used ('resource'), a status string (e.g. 'ok'), and a human-readable summary of the redirect trace result. On failure the endpoint returns HTTP 503 and no charge is applied.

## 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",
       "example": "https://example.com"
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "tool": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "summary": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tool": "resource",
  "status": "ok",
  "summary": "Completed"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/speer-cyber-defense-http-redirect-trace-e1c51651/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.speercyberdefense.com](https://www.zero.xyz/host/api.speercyberdefense.com/llms.txt)
