Skip to main content
短.be

The Carbon Footprint of Short URLs - Quantifying CO2 Emissions from Redirects

Each HTTP redirect uses about 0.5 Wh. Over 300 billion redirects per year produce real CO2. We quantify the impact and explore CDN-based reduction strategies.

Apr 29, 2026 · About 3 min read

Technical

Short URLs are a convenient tool, but behind the scenes each one triggers an additional HTTP redirect. The energy consumed by a single redirect is negligible, but when billions of redirects happen every day across the globe, the environmental impact becomes significant. This article estimates the CO2 emissions generated by redirects and explores design-level strategies for reducing them.

## The Energy Cost of a Single Redirect

A single web request consumes approximately 0.3 Wh on the data center side and 0.2 Wh for network transmission, totaling roughly 0.5 Wh (The Shift Project, 2019). When a user clicks a short URL, their browser first sends a request to the URL shortening server, then follows the redirect to the destination. Compared to a direct visit, this means at least one additional request.

Assuming 0.5 Wh per additional request, the resulting CO2 emissions depend on the carbon intensity of the electricity grid. According to 2023 IEA (International Energy Agency) data, the global average carbon intensity is approximately 490 g-CO2/kWh. This puts the CO2 emissions per redirect at roughly 0.245 mg.

## The Cumulative Annual Impact

Bitly reports processing over 10 billion clicks per month. When you add TinyURL, Rebrandly, and the built-in URL shorteners of major social media platforms, the global total conservatively exceeds 300 billion redirects per year.

Multiplying 300 billion by 0.245 mg yields approximately 73,500 metric tons of CO2 annually. To put this in perspective, that is equivalent to the yearly emissions of roughly 15,000 average American households (based on the EPA's estimate of about 4.9 metric tons per household). While this estimate has a margin of error, it clearly shows that redirects are not something we can simply dismiss.

## Reduction Through CDN Edge Caching

Most URL shortening services use a CDN (Content Delivery Network). When a CDN edge server caches the redirect destination, the request is handled at a node close to the user without ever reaching the origin server.

Major CDNs like CloudFront and Cloudflare routinely achieve edge cache hit rates above 90%. By eliminating the round trip to the origin server, the network transmission distance is drastically reduced, cutting power consumption by an estimated 40-60% compared to a direct origin request. URL shortening services that leverage CDN caching effectively hold a clear advantage from an environmental standpoint.

## 301 vs. 302 - A Critical Difference in Cache Efficiency

The HTTP status code used for redirects also affects environmental impact. A 301 (Moved Permanently) response tells the browser to cache the redirect, so when the same user clicks the same short URL again, the browser redirects locally from its cache. No server request is made, meaning zero additional power consumption.

A 302 (Found) response, on the other hand, is not cached by default. Services that want to track every click tend to use 302, which means a server request is generated even for repeat visits. Assuming a repeat click rate of 20%, switching to 301 alone could reduce total request volume by roughly 15-20%.

For use cases where click analytics are unnecessary - such as sharing links in internal documents or embedding URLs in printed QR codes - choosing 301 redirects directly reduces environmental impact.

## Design Principles for Green IT

When designing or selecting a URL shortening service, here are the key considerations for minimizing environmental impact.

First, CDN edge caching is essential. Minimizing requests that reach the origin server reduces energy consumption across the network. Second, choose between 301 and 302 based on the use case. Apply 301 for links that do not require analytics, maximizing browser cache utilization. Third, consider the power source of the data center. Selecting cloud providers that run on 100% renewable energy - such as AWS (targeting 2025), Google Cloud (achieved in 2017) - brings the effective carbon footprint of redirects closer to carbon neutrality.

If you are interested in green IT, you can find related books on Amazon. There is a growing selection of titles covering data center energy efficiency and sustainable infrastructure design.

## Conclusion - The Large Sum of Small Redirects

The CO2 emissions from a single redirect amount to just 0.245 mg. But at a scale of over 300 billion per year, this adds up to tens of thousands of metric tons. Leveraging CDN caching, adopting 301 redirects where appropriate, and choosing infrastructure powered by renewable energy - these design decisions collectively and steadily reduce the environmental footprint of URL shortening. Designing for both convenience and sustainability is the standard that next-generation URL shortening services should aspire to.

Share on XHatena

Was this article helpful?

Related Articles

Related Terms

Ready to shorten your first URL?

Shorten a URL