VOOZH about

URL: https://apify.com/logiover/bulk-url-unshortener

โ‡ฑ Bulk URL Unshortener โ€” Redirect Chain Resolver ยท Apify


๐Ÿ‘ Bulk URL Unshortener โ€” Redirect Chain Resolver avatar

Bulk URL Unshortener โ€” Redirect Chain Resolver

Pricing

from $3.50 / 1,000 results

Go to Apify Store

Bulk URL Unshortener โ€” Redirect Chain Resolver

Resolve thousands of shortened URLs at once โ€” bit.ly, t.co, ow.ly, TinyURL and every shortener. Traces the full redirect chain (every hop, status code, redirect type) and returns the final URL, latency and intermediate destinations. No API key, export to CSV or JSON.

Pricing

from $3.50 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ Logiover

Logiover

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Bulk URL Unshortener ๐Ÿ”— โ€” Redirect Chain Resolver

Resolve thousands of shortened URLs in a single run. This bulk URL unshortener takes your list of short links โ€” bit.ly, t.co, ow.ly, TinyURL, short.link and every other URL shortener โ€” and follows every redirect hop until the final destination. Each hop is logged with its HTTP status code, redirect type (permanent/temporary), next URL and per-hop latency.

Every short link expands to one row with the full redirect chain as structured JSON, the hop count, the final URL and total resolution time. No API key, no captcha solver, no headless browser โ€” pure HTTP HEAD requests. Paste a few hundred short links and get thousands of rows of redirection intelligence.

Looking for a URL expander, a short link resolver, a redirect chain tracer, or a free URL unshortener API? This actor resolves them all at scale.


โœจ Key features

  • ๐Ÿ”— Resolve any shortener โ€” bit.ly, t.co, ow.ly, TinyURL, short.link, Rebrandly, and every custom short domain.
  • ๐Ÿงญ Full redirect chain โ€” every hop captured: URL, status code, redirect type (301/302/303/307/308) and next URL.
  • ๐Ÿงต Chain URLs as text โ€” comma-separated list of all URLs in the chain for quick scanning.
  • โฑ๏ธ Per-hop latency โ€” every hop records its round-trip time; total latency for the full chain also captured.
  • ๐Ÿ“Š One row per URL โ€” each input URL gets one row with all chain details in structured JSON.
  • ๐Ÿงน Protocol auto-fix โ€” bit.ly/xyz is automatically upgraded to https://bit.ly/xyz.
  • โšก High concurrency โ€” configurable parallel resolution (default 20, up to 100).
  • ๐Ÿ›ก๏ธ Loop prevention โ€” configurable max redirects (default 15); stops cleanly rather than following infinite chains.
  • ๐Ÿ”‘ No API key โ€” uses standard HTTP HEAD requests; no external service needed.

๐Ÿ’ก Use cases

  • Security / phishing analysis โ€” trace where a suspicious short link actually leads without opening it in a browser.
  • Digital forensics & OSINT โ€” map redirection chains across campaigns, ad networks and tracking links.
  • Marketing link audit โ€” verify that shortened links in emails, social posts and ads still point to the correct destination.
  • SEO audit โ€” confirm that short links used in backlinks and social profiles resolve to the right canonical URLs.
  • Brand protection โ€” scan for short links that impersonate your brand and trace where they redirect.
  • Data enrichment โ€” append resolved destinations to large URL datasets for content categorization.

๐Ÿ“ฆ What you get

Each row in the dataset is one shortened URL fully traced:

FieldDescription
originalUrlThe short URL that was submitted
finalUrlThe final resolved URL after following all redirects
isShortenedtrue if at least one redirect was followed, false if the URL was already the final destination
hopCountNumber of redirect hops traversed
redirectChainFull chain as a JSON array โ€” each hop has url, statusCode, redirectType, nextUrl, latencyMs
chainUrlsComma-separated list of all URLs in the redirect chain (in traversal order)
totalLatencyMsTotal round-trip time in milliseconds for the full resolution
statusCodeHTTP status code of the final destination
errorError message if resolution failed (timeout, DNS, TLS, etc.)
resolvedAtISO 8601 timestamp of when the resolution was performed

Example output

[
{
"originalUrl":"https://bit.ly/3abcXYZ",
"finalUrl":"https://example.com/landing-page?utm_source=twitter",
"isShortened":"true",
"hopCount":"2",
"redirectChain":"[{\"url\":\"https://bit.ly/3abcXYZ\",\"statusCode\":301,\"redirectType\":\"permanent\",\"nextUrl\":\"https://example.com/lp\",\"latencyMs\":95},{\"url\":\"https://example.com/lp\",\"statusCode\":302,\"redirectType\":\"temporary\",\"nextUrl\":\"https://example.com/landing-page?utm_source=twitter\",\"latencyMs\":42}]",
"chainUrls":"https://bit.ly/3abcXYZ, https://example.com/lp",
"totalLatencyMs":"162",
"statusCode":"200",
"resolvedAt":"2026-06-24T12:00:00.000Z"
},
{
"originalUrl":"https://t.co/xyz789",
"finalUrl":"https://github.com/logiover",
"isShortened":"true",
"hopCount":"2",
"redirectChain":"[{\"url\":\"https://t.co/xyz789\",\"statusCode\":301,\"redirectType\":\"permanent\",\"nextUrl\":\"https://github.com/logiover\",\"latencyMs\":210}]",
"chainUrls":"https://t.co/xyz789",
"totalLatencyMs":"245",
"statusCode":"200",
"resolvedAt":"2026-06-24T12:00:01.000Z"
}
]

๐Ÿš€ How to use it

  1. Click Try for free / Start.
  2. Paste your list of short URLs into URLs to Unshorten โ€” one per line.
  3. (Optional) Adjust Max Redirects and Max Concurrency for large lists.
  4. Click Save & Start, then export the dataset as JSON, CSV, Excel or via API. Filter by hopCount or isShortened.

โš™๏ธ Input

FieldTypeDescriptionDefault
urlsarray (required)Shortened URLs to resolve. Any URL works โ€” shortened or not.โ€“
maxRedirectsintegerMaximum redirect hops to follow per URL before stopping.15 (max 30)
maxConcurrencyintegerParallel resolution. Higher is faster.20 (max 100)
proxyConfigurationobjectProxy used for the HTTP requests.Apify Proxy (datacenter)

Example input

{
"urls":["https://bit.ly/3abc","https://t.co/xyz","https://tinyurl.com/example"],
"maxRedirects":15,
"maxConcurrency":20,
"proxyConfiguration":{"useApifyProxy":true}
}

๐Ÿ” How it works

For each URL, the actor sends an HTTP HEAD request with followRedirect: false. When a 3xx status code with a Location header is returned, the hop is logged and the actor follows to the next URL. Each hop measures its own latency individually, and the process repeats until:

  • A non-redirect status (2xx, 4xx, 5xx) is returned โ†’ this is the final destination.
  • The max redirect limit is reached โ†’ the chain is cut and the last URL is recorded as final.
  • A network/timeout/DNS error occurs โ†’ the resolution fails gracefully with an error field.

Using HEAD instead of GET makes resolution fast โ€” we don't download any page content, just the HTTP response headers. This means thousands of short links can be resolved per run with minimal bandwidth.

๐Ÿงฐ Tips & best practices

  • Paste full short URLs including https:// โ€” if you omit it the actor adds it automatically.
  • Use the Max Redirects field to cap resolution depth and avoid infinite redirect loops.
  • Increase Max Concurrency for very large lists; keep Apify Proxy enabled to avoid per-IP rate limiting from shorteners.
  • Parse the redirectChain JSON to extract per-hop details for forensic or audit workflows.
  • Filter by isShortened: "false" to find URLs that are already direct (no redirection).
  • Export to CSV/Excel and sort by totalLatencyMs descending to find slow redirect chains.

โ“ FAQ

How do I resolve many short URLs at once?

Paste your full list of short links into the URLs field and run the actor once. It follows every redirect chain in parallel and returns one row per URL with the full chain captured.

Can I trace the full redirect path?

Yes โ€” the redirectChain field contains structured JSON with every hop: the URL at each step, its HTTP status code, whether the redirect was permanent or temporary, the next URL it pointed to, and the latency of that individual hop.

Is this a free URL unshortener API without a key?

There's no API key to manage. The actor uses standard HTTP HEAD requests โ€” no external unshortening service, no captcha solving, no headless browser. Just provide URLs and run.

Does it handle t.co / X (Twitter) short links?

Yes โ€” t.co links are standard HTTP redirects and resolve cleanly. The actor handles 301/302/303/307/308 redirects from any shortener, including t.co, bit.ly, ow.ly, TinyURL, Rebrandly, and custom short domains.

What if a short link redirects many times?

The maxRedirects setting (default 15) caps the number of hops. If the limit is reached, the chain is cut and the last URL is reported as the final destination. No infinite loops.

Can I export resolved URLs to CSV or JSON?

Yes โ€” download the dataset as CSV, JSON or Excel, or pull it through the REST API.

๐Ÿ”— Related actors by the same author

๐Ÿ“ Changelog

2026-06-24

  • Initial release โ€” bulk URL unshortening with full redirect chain tracing, hop-by-hop latency, no API key, CSV/JSON export.

You might also like

URL Shortener Resolver API

andok/url-shortener-resolver

Bulk unshorten URLs and extract complete HTTP redirect chains. Resolve bit.ly, t.co, and others to find the final destination URL and HTTP status code.

URL Shortener Expander

automation-lab/url-shortener-expander

This actor takes any list of shortened or redirecting URLs and follows each redirect step by step to reveal the final destination URL. It returns the complete redirect chain, redirect count, final status code, and final domain. Use it for link analysis, security verification, or marketing...

๐Ÿ‘ User avatar

Stas Persiianenko

16

Redirect Path Analyzer

zerobreak/redirect-path-analyzer

Redirect path analyzer that follows every hop in a URL chain and reports status codes, redirect types, and the final destination, so SEO teams can fix broken chains before they affect rankings.

HTTP Status Code Checker - Bulk URLs & Redirect Chains

dltik/http-status-checker

Bulk-check HTTP status codes and full redirect chains for any list of URLs. For each URL: final status, every redirect hop (status + Location), response time, content-type and server. Pure HTTP, reads headers only โ€” fast and cheap. Great for SEO migrations, link audits and uptime spot-checks.

Redirect Chain Analyzer

automation-lab/redirect-chain-analyzer

This actor follows HTTP redirects step-by-step and reports the full chain for any list of URLs. It also tests HTTP-to-HTTPS and www/non-www variants to verify canonical redirects are properly configured. Use it for SEO migration audits, redirect debugging, or monitoring redirect health.

๐Ÿ‘ User avatar

Stas Persiianenko

8

Bulk URL Status Checker - Redirect & Broken Link Audit

webdata_labs/bulk-url-status-checker

[๐Ÿ’ต $2.00 / 1K] Check URLs in bulk for HTTP status codes, broken links, redirects, response times, final URLs, and redirect chains. Built for SEO audits, migrations, QA, and monitoring. CSV/JSON.

2

Bulk URL Status Checker โ€“ Broken Link & Redirect Audit

logiover/bulk-url-status-checker

Bulk HTTP status code checker and broken link checker. Trace redirect chains, find 404s, export to CSV/JSON. No browser, no login.