Staff Pick

📡 Monitor your APIs — know when they go down before your users do

Better Stack checks uptime every 30 seconds with instant Slack, email & SMS alerts. Free tier available.

Start Free →

Affiliate link — we may earn a commission at no extra cost to you

BlogFastly CDN Status Guide

Is Fastly Down? How to Check CDN Status in 2026

Complete guide to checking Fastly CDN outages, diagnosing edge PoP failures, understanding the 2021 global incident, and building CDN-resilient applications.

Updated: April 2026·10 min read

⚠️ The 2021 Fastly Lesson: Why CDN Outages Are Different

In June 2021, a single Fastly configuration change took down 85% of the internet's most visited sites for 1 hour. Reddit, GitHub, the UK government, and dozens of major publishers went offline simultaneously. If you depend on Fastly, building fallback strategies is not optional — it's critical infrastructure.

🔍 Quick Fastly Status Check

If Fastly appears to be down, check these sources:

🔧 Recommended Tools

1
Access from any region

Some Fastly issues are ISP or region-specific. A VPN lets you test from different locations and bypass local blocks.

6,400+ servers in 111 countries · 30-day money-back guarantee

2
Automate your status checks

Monitor Fastly and 100+ APIs with instant email alerts. 14-day free trial.

Alert Pro — Free Trial$9/mo after trial
⏱️

Enterprise downtime costs $9,000+ per minute on average

ITIC research: 91% of enterprises say hourly downtime costs exceed $300,000. The average across all industries is $540,000/hour. Early detection reduces outage duration by 70%.

Fastly is one of the world's most powerful edge cloud platforms, trusted by Shopify, GitHub, Reddit, Stripe, Vimeo, and hundreds of other high-traffic applications. Unlike traditional CDNs, Fastly offers programmable edge computing (Compute@Edge), instant cache purging, and advanced VCL routing. When Fastly goes down, the impact is disproportionately large — a single Fastly outage can simultaneously affect thousands of websites and APIs.

How to Check if Fastly is Down

1. Official Fastly Status Page

Fastly's status page at status.fastly.com shows operational status for each Point of Presence (PoP) globally. During an incident, check whether the outage is limited to specific PoPs (regional) or is a global event. Regional outages affect only traffic routed through those PoPs.

2. Test Fastly API Directly

# Check Fastly API availability
curl -s -o /dev/null -w "%{http_code}" \
  https://api.fastly.com/stats/regions
# Returns 200 if Fastly API is operational (even without auth)

# Check if YOUR service is being served by Fastly
curl -sI https://your-domain.com | grep -i "x-served-by\|x-fastly\|fastly-"
# Fastly adds x-served-by: cache-<pop>-<id> header

3. Detect if Traffic is Bypassing Fastly

# Check the response headers for Fastly's signature
curl -sI https://www.example.com | grep -i "x-served-by\|via\|age"

# If x-served-by header is missing, traffic may be hitting origin directly
# or going through a different CDN

📡 Monitor Fastly uptime every 30 seconds — get alerted in under a minute

Trusted by 100,000+ websites · Free tier available

Start Free →

4. Check the Fastly Real User Monitoring API

If you have a Fastly account, use the Fastly API to check your service's real-time stats:

# Get recent traffic stats for your service
curl -H "Fastly-Key: YOUR_API_KEY" \
  "https://api.fastly.com/service/YOUR_SERVICE_ID/stats/summary"

# Check for 503 rate increases indicating cache/origin failures
curl -H "Fastly-Key: YOUR_API_KEY" \
  "https://api.fastly.com/service/YOUR_SERVICE_ID/stats/field/status_5xx"
📡
Recommended

Monitor your Fastly-powered services from the outside

Better Stack's synthetic monitoring checks your Fastly endpoints from multiple global locations — giving you independent visibility into CDN performance and detecting edge failures before your users do.

Try Better Stack Free →

What Happened During the 2021 Fastly Outage

The June 8, 2021 Fastly outage is the most significant CDN incident in internet history. Here's what happened:

  • Root cause: A software bug introduced in a May 2021 release was dormant until triggered by a customer's configuration change.
  • Trigger: A customer in the US changed their settings at 09:47 UTC, triggering the latent bug across 85% of Fastly's global network.
  • Impact: Approximately 85% of Fastly's network became unavailable simultaneously. Sites including Reddit, GitHub, Twitch, the New York Times, CNN, The Guardian, and UK Government (gov.uk) went offline.
  • Resolution time: Fastly engineers identified and deployed a fix within 49 minutes. Full restoration took approximately 3 hours.
  • Key lesson: A single CDN provider creates a single point of failure that affects entire internet ecosystems.

Building Fastly CDN Fallback Strategies

Given Fastly's outsized impact when it fails, production applications should have fallback strategies:

Option 1: DNS Failover to Origin

Configure low-TTL DNS records that can be quickly switched from Fastly to your origin server during an outage. Services like Route53, Cloudflare, or NS1 support health-check-based automatic DNS failover.

Option 2: Multi-CDN Traffic Splitting

Route a percentage of traffic through a secondary CDN (Cloudflare, AWS CloudFront, or Akamai). An intelligent DNS controller can shift all traffic to the secondary CDN if Fastly health checks fail.

Option 3: Fastly VCL Stale Content

# VCL snippet to serve stale content on origin failure
if (beresp.status >= 500 && beresp.status < 600) {
  if (stale.exists) {
    return(deliver_stale);
  }
}

# Enable stale-while-revalidate
set beresp.stale_while_revalidate = 60s;
set beresp.stale_if_error = 86400s; # Serve stale for 24h on errors

Frequently Asked Questions

How is Fastly different from Cloudflare?

Fastly and Cloudflare are both edge cloud platforms but differ in target markets and architecture. Fastly focuses on developer-programmable edge computing with instant cache purging (< 150ms globally) — favored by enterprises and media companies. Cloudflare has a broader feature set including DDoS protection, Zero Trust, and a more accessible self-serve tier. Both have global PoP networks but Fastly's network is more concentrated in high-tier data centers.

Does Fastly have a free tier?

Fastly has historically been enterprise-focused with no meaningful free tier for production use. New accounts get limited credits for testing. Fastly's pricing is usage-based (bandwidth + requests). For cost-effective CDN, Cloudflare's free tier or AWS CloudFront may be better starting points.

What is Fastly Compute@Edge?

Compute@Edge (now called Fastly Compute) allows running WebAssembly code at Fastly's edge PoPs. This enables A/B testing, authentication, request manipulation, and custom routing logic without routing traffic back to origin — reducing latency significantly compared to serverless functions in origin-based cloud.

Can I use Fastly as an API gateway?

Yes. Fastly is widely used as an API gateway — handling authentication, rate limiting, request routing, response transformation, and caching at the edge. Companies like GitHub use Fastly as the primary API gateway for github.com and api.github.com.

Alert Pro

14-day free trial

Stop checking — get alerted instantly

Next time Fastly goes down, you'll know in under 60 seconds — not when your users start complaining.

  • Email alerts for Fastly + 9 more APIs
  • $0 due today for trial
  • Cancel anytime — $9/mo after trial

Monitor Your Fastly-Powered Site Automatically

Get instant alerts when Fastly goes down or your CDN starts serving errors. Monitor from multiple global PoPs with Better Stack.

Try Better Stack Free — No Credit Card Required

Or use APIStatusCheck Alert Pro — API monitoring from $9/mo

🌐 Can't Access Fastly?

If Fastly is working for others but not for you, it might be an ISP or regional issue. A VPN can help bypass network-level blocks and routing problems.

🔒

Troubleshoot with a VPN

Connect from a different region to test if the issue is local to your network. Also protects your connection on public Wi-Fi.

Try NordVPN — 30-Day Money-Back Guarantee
🔑

Secure Your Fastly Account

Service outages are a common time for phishing attacks. Use a password manager to keep unique, strong passwords for every account.

Try NordPass — Free Password Manager
Quick ISP test: Try accessing Fastly on mobile data (Wi-Fi off). If it works, the issue is with your ISP or local network.

⏳ While You Wait — Try These Alternatives

🛠 Tools We Use & Recommend

Tested across our own infrastructure monitoring 200+ APIs daily

Better StackBest for API Teams

Uptime Monitoring & Incident Management

Used by 100,000+ websites

Monitors your APIs every 30 seconds. Instant alerts via Slack, email, SMS, and phone calls when something goes down.

We use Better Stack to monitor every API on this site. It caught 23 outages last month before users reported them.

Free tier · Paid from $24/moStart Free Monitoring
1PasswordBest for Credential Security

Secrets Management & Developer Security

Trusted by 150,000+ businesses

Manage API keys, database passwords, and service tokens with CLI integration and automatic rotation.

After covering dozens of outages caused by leaked credentials, we recommend every team use a secrets manager.

SEMrushBest for SEO

SEO & Site Performance Monitoring

Used by 10M+ marketers

Track your site health, uptime, search rankings, and competitor movements from one dashboard.

We use SEMrush to track how our API status pages rank and catch site health issues early.

From $129.95/moTry SEMrush Free
View full comparison & more tools →Affiliate links — we earn a commission at no extra cost to you