Skip to content
Eden Engine

HTTP Redirect Chain Tracer

omnial/x402-redirect-trace

Given a URL, follows every HTTP redirect hop to its final destination and returns the full chain: each hop's status code, status text, location header, and server, plus the final URL, final status code, total hop count, total latency, whether the final URL uses HTTPS, and whether the final URL stayed on the same domain as the original.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.081081 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string"
    },
    "max_redirects": {
      "type": "integer"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "chain": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "description": "The URL requested at this hop."
          },
          "step": {
            "type": "number",
            "description": "1-indexed hop position."
          },
          "server": {
            "type": "string",
            "description": "The Server response header, e.g. 'gws', 'cloudflare'."
          },
          "location": {
            "type": [
              "string",
              "null"
            ],
            "description": "The Location response header for this hop. null on a hop that did not redirect (e.g. the final 200)."
          },
          "latency_ms": {
            "type": "number",
            "description": "Time in milliseconds for this single hop."
          },
          "status_code": {
            "type": "number"
          },
          "status_text": {
            "type": "string"
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per hop, in order, starting with the original URL. A direct (non-redirecting) URL still produces a single-entry chain for its own 200 response."
    },
    "issues": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Problems detected while tracing (e.g. a redirect loop). Empty on both real calls observed."
    },
    "final_url": {
      "type": "string",
      "description": "The URL reached after following every redirect hop (equals original_url when redirect_count is 0)."
    },
    "uses_https": {
      "type": "boolean",
      "description": "Whether the final URL uses HTTPS."
    },
    "same_domain": {
      "type": "boolean",
      "description": "Whether the final URL stayed on the same domain as the original."
    },
    "original_url": {
      "type": "string",
      "description": "The URL exactly as submitted."
    },
    "redirect_count": {
      "type": "number",
      "description": "Number of redirect hops followed. 0 on a direct, non-redirecting URL."
    },
    "total_latency_ms": {
      "type": "number",
      "description": "Total time in milliseconds across every hop."
    },
    "final_status_code": {
      "type": "number",
      "description": "The HTTP status code of the final hop."
    }
  },
  "description": "The redirect trace result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.081081
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026