x402 List

x402 Protocol Service Directory

URL Unwrap / Redirect Tracer

Data

Single GET endpoint that follows an HTTP redirect chain using HEAD requests only, returning every hop (URL and status), the final URL, a redirect count and advisory warnings such as redirect loops or https to http downgrades. JSON output. Operated by x402 Atlas.

Pay from $0.009 per request in USDC on Base / Solana, settled onchain via the x402 protocol, no signup, no API key needed.

UPTIME 24H 100% 7D 100% 30D 100%
BASE URL https://unwrap.use.x402atlas.com ENDPOINTS 1 NETWORK Base / Solana ASSET USDC MEMBER SINCE 2026-07-20 MONITORED SINCE 2026-07-20

ASSESSMENT

updated 5h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 100%
uptime 24h
100%
uptime 7d
100%
uptime 30d
100%
uptime 90d
100%
response p95
665ms
avg response
442ms
total checks
47
compliance A (11/11)

11 of 11 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.009 (p51 in Data)
price (min)
$0.009
category percentile (min)
p51 in Data
endpoints / prices
1 / 1
model
flat
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

traction $0.00135 30d · 0 buyers
volume 30d
$0.00135
buyers 30d
0
settlements 30d
0
last settlement
2026-07-15
top buyer share
67% of 30d volume
trend 7d vs 30d
2.86x the 30d daily rate
networks
eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d

Attributed pro-quota: this payout address is shared, so volume and buyers are the operator-level figure divided by the services sharing it. A declared convention, not an individually observed measure, and still a conservative undercount.

Top buyer share is a concentration signal, not part of the ranking score.

WHAT IT DOES

ai-derived

Traces HTTP redirect chains to their final destination without downloading page bodies.

category
redirect-tracer
redirect-tracingurl-analysis

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET
GET / $0.009 Base/Solana USDC
1 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to GET / returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i 'https://unwrap.use.x402atlas.com/'
// 402 response (captured by monitor) · 1 payload · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "tier": "standard",
          "version": "2",
          "merchant": "x402Atlas"
        },
        "payTo": "0x492eC81ECf395FbEa2F19fECe203ee14D0544B71",
        "amount": "9000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      },
      {
        "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
        "extra": {
          "tier": "standard",
          "feePayer": "D6ZhtNQ5nT9ZnTHUbqXZsTx5MH2rPFiBBggX4hY1WePM",
          "merchant": "x402Atlas"
        },
        "payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
        "amount": "9000",
        "scheme": "exact",
        "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://unwrap.use.x402atlas.com/",
      "mimeType": "application/json",
      "description": "Trace an HTTP redirect chain to its final destination without downloading page bodies. Returns every hop (URL + status), the final URL, and safety warnings — link-safety grounding for agents before they visit or cite a URL. Clean JSON.",
      "serviceName": "URL Unwrap / Redirect Tracer"
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "GET",
            "queryParams": {
              "url": "https://bit.ly/example"
            }
          },
          "output": {
            "type": "json",
            "example": {
              "url": "https://bit.ly/example",
              "hops": [
                {
                  "url": "https://bit.ly/example",
                  "location": "https://t.co/abcd",
                  "status_code": 301
                },
                {
                  "url": "https://t.co/abcd",
                  "location": "https://example.com/landing",
                  "status_code": 302
                },
                {
                  "url": "https://example.com/landing",
                  "status_code": 200
                }
              ],
              "warnings": [],
              "final_url": "https://example.com/landing",
              "queried_at": "2026-07-03T12:00:00Z",
              "redirected": true,
              "status_code": 200,
              "redirect_count": 2
            }
          }
        },
        "tags": [
          "url",
          "redirect",
          "unwrap",
          "unshorten",
          "link-safety",
          "shortener",
          "http",
          "agent"
        ],
        "schema": {
          "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": "Absolute URL to trace. Scheme must be http or https; host must be a hostname (not an IP literal), not \"localhost\", and not under a reserved suffix (.local, .internal, .localdomain, .lan, .test); an explicit port must be the scheme default or on the server's allowlist."
                    }
                  }
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "required": [
                    "url",
                    "final_url",
                    "status_code",
                    "redirect_count",
                    "redirected",
                    "hops",
                    "warnings",
                    "queried_at"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "The input URL as parsed"
                    },
                    "hops": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "url",
                          "status_code"
                        ],
                        "properties": {
                          "url": {
                            "type": "string"
                          },
                          "location": {
                            "type": "string",
                            "description": "Location header value, if any"
                          },
                          "status_code": {
                            "type": "integer"
                          }
                        }
                      },
                      "description": "Every HEAD request made, in order"
                    },
                    "warnings": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      },
                      "description": "Advisory notes: hop-cap truncation, redirect loops, missing Location, https→http downgrade, or a blocked redirect target"
                    },
                    "final_url": {
                      "type": "string",
                      "description": "The last URL reached in the redirect chain"
                    },
                    "queried_at": {
                      "type": "string",
                      "format": "date-time",
                      "description": "UTC timestamp the trace was performed"
                    },
                    "redirected": {
                      "type": "boolean",
                      "description": "Whether any redirect was followed"
                    },
                    "status_code": {
                      "type": "integer",
                      "description": "HTTP status code of the final hop"
                    },
                    "redirect_count": {
                      "type": "integer",
                      "description": "Number of 3xx hops followed"
                    }
                  }
                }
              }
            }
          }
        },
        "category": "domain-intelligence",
        "routeTemplate": ":var1"
      }
    },
    "x402Version": 2
  }
]

UPTIME

07-20 · uptime 100.0% · 558ms avg07-21 · uptime 100.0% · 402ms avg07-2007-21
RESPONSE TIME
07-20 · 558ms avg07-20 · 558ms avg07-21 · 402ms avg07-21 · 402ms avg07-2007-21
90d UPTIME 100%
UPTIME 90D 100%
AVG RESP 433ms
TOTAL CHECKS 65

RECENT CHECKS

TIME STATUS RESP
● OK 378ms
● OK 410ms
● OK 433ms
● OK 514ms
● OK 533ms
● OK 336ms
● OK 332ms
● OK 465ms
● OK 386ms
● OK 350ms
● OK 354ms
● OK 371ms
● OK 360ms
● OK 505ms
● OK 375ms
● OK 347ms
● OK 573ms
● OK 336ms

OVER TIME

All charts share the 90d window selected here. Every series is also served as JSON at /api/v1/services/url-unwrap-redirect-tracer/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted).

PRICE (captured 402, USD)
07-20 · $0.00907-21 · $0.009$0.00907-2007-21
SUB-SCORES (uptime + x402 compliance)
07-20 compliance: 100% checks07-21 uptime: 100.0% compliance: 100% checksuptimecompliance07-2007-21
VOLUME (on-chain settlement, USD)
07-03 · $0.0107-14 · $0.0107-15 · $0.01peak $0.0107-0307-15

Shared payout address (19 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Where a per-service figure is attributed, the assessment block and the ranking, it is the address total divided pro-quota by the 20 services sharing it: a declared convention, not an individually observed measure.

DISTINCT BUYERS
07-03 · 1 buyer07-14 · 1 buyer07-15 · 1 buyerpeak 1 buyer07-0307-15

Shared payout address (19 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Where a per-service buyer count is attributed, the assessment block and the ranking, it is divided pro-quota by the 20 services sharing the address and can be fractional: a declared convention, not an individually observed measure.

COMPLIANCE

11/11 checks pass · grade A
  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS

EMBED THIS BADGE

Show that URL Unwrap / Redirect Tracer is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

URL Unwrap / Redirect Tracer listed on x402-list
status
URL Unwrap / Redirect Tracer uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/url-unwrap-redirect-tracer?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/url-unwrap-redirect-tracer.svg" alt="URL Unwrap / Redirect Tracer listed on x402-list" height="28">
</a>
// Markdown
[![URL Unwrap / Redirect Tracer on x402-list](https://x402-list.com/badge/url-unwrap-redirect-tracer.svg)](https://x402-list.com/services/url-unwrap-redirect-tracer?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/url-unwrap-redirect-tracer?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/url-unwrap-redirect-tracer.svg?data=uptime" alt="URL Unwrap / Redirect Tracer uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]