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.
ASSESSMENT
updated 5h agoEvidence-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
- 691ms
- avg response
- 497ms
- total checks
- 24
compliance A (11/11)
11 of 11 x402 conformance checks pass. Full checklist below.
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.003375 30d · 0 buyers
- volume 30d
- $0.003375
- 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-derivedTraces HTTP redirect chains to their final destination without downloading page bodies.
- category
- redirect-tracer
AI-generated summary. The measured data is never altered by it.
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET |
|---|---|---|---|---|---|
| GET | / | $0.009 | Base/Solana | USDC |
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.
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
RECENT CHECKS
OVER TIME
All charts share the 30d 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).
Shared payout address (7 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 8 services sharing it: a declared convention, not an individually observed measure.
Shared payout address (7 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 8 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
<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>
[](https://x402-list.com/services/url-unwrap-redirect-tracer?utm_source=badge&utm_medium=referral&utm_campaign=embed)
<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>