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

Blog/Netlify Status Guide

Netlify Status: How to Check If Netlify Is Down Right Now (2026)

Where to find the official Netlify status page, what each component status means, the build vs. CDN distinction, and how to monitor your Netlify site independently.

Updated: June 2026ยท8 min readยทBy API Status Check

Is Netlify Down Right Now?

Check netlifystatus.com for official real-time status. The page covers CDN, Builds, Functions, Edge Functions, API, Forms, and Identity.

Netlify Official Status Page

The official Netlify status page at netlifystatus.com is maintained by Netlify and updated during incidents. It covers all major Netlify services:

CDN
Static asset delivery to site visitors globally
Builds
Build pipeline for deploying new versions
API
Netlify API for dashboard and integrations
Netlify Functions
Serverless functions backend
Edge Functions
Deno-based edge runtime for dynamic logic
Forms
Form submission and spam filtering
Identity
User authentication and JWT service
Large Media
Git LFS integration for large assets

Key insight: Netlify's CDN and build pipeline are independent systems. A build outage means deploys are stuck, but your currently-live site continues to serve. A CDN outage is the serious one โ€” that takes your site offline for visitors.

๐Ÿ“ก
Recommended

Monitor your Netlify site independently

Better Stack monitors your Netlify site every 30 seconds from multiple global locations. Get instant alerts before visitors report outages, even when netlifystatus.com is delayed.

Try Better Stack Free โ†’

Build Pipeline vs CDN: The Critical Difference

The most important Netlify distinction for developers: build failures and CDN failures affect your site very differently.

Build Pipeline Down

  • New deploys are stuck or failing
  • Your currently-live site continues to work
  • Affects: git push deployments, manual deploys, preview URLs
  • Urgency: medium โ€” no new code can ship
  • Check: Deploys tab in the Netlify dashboard

CDN Down

  • Visitors cannot access your site
  • Returns 502, 503, or connection timeout
  • Affects all sites on Netlify's edge network
  • Urgency: critical โ€” user-facing outage
  • Check: netlifystatus.com โ†’ CDN immediately
Rule of thumb: If your site URL returns an error for visitors โ†’ CDN issue (critical). If your Netlify dashboard shows failed/queued deploys but the site loads fine โ†’ build pipeline issue (disruptive but not a visitor emergency).

Check Netlify Status Programmatically

Netlify's status page is powered by Atlassian Statuspage, which provides a JSON API you can query programmatically:

# Get overall Netlify status
curl https://netlifystatus.com/api/v2/status.json
# Get all components (CDN, Builds, Functions, etc.)
curl https://netlifystatus.com/api/v2/components.json
# Get active incidents
curl https://netlifystatus.com/api/v2/incidents/unresolved.json

The status API returns JSON with indicator values: none (all good), minor, major, or critical. You can poll this API in monitoring scripts or CI/CD pipelines.

How to Check Netlify Status (Step by Step)

1.

Check netlifystatus.com

The official status page. Expand individual components (CDN, Builds, Functions) to see which service is affected โ€” not just the overall indicator.

Go to Netlify Status Page โ†’
2.

Check the Netlify Dashboard

Log in to app.netlify.com and check the Deploys tab. Failed or queued builds show up there with detailed error logs. For live site issues, check the Functions logs if using serverless.

Open Netlify Dashboard โ†’
3.

Test your .netlify.app URL

Every Netlify site has a .netlify.app subdomain (e.g., yoursite.netlify.app). If your custom domain fails but .netlify.app loads, the issue is DNS, not Netlify CDN.

4.

Check the Netlify Support Forum

Netlify's community forum (answers.netlify.com) is often where users report issues first. Search for recent posts about your specific problem.

Open Netlify Forum โ†’
5.

Check Twitter / X for real-time reports

Search "netlify down" on Twitter for real-time user reports. Netlify also posts major incident updates on @Netlify.

Follow @Netlify โ†’

What to Do When Netlify Is Down

Immediate Steps

  • Check netlifystatus.com to confirm platform-level issue
  • Test .netlify.app URL to rule out custom domain DNS issues
  • If builds are failing: check build logs for local errors first
  • If CDN is down: notify stakeholders, enable maintenance mode
  • Subscribe to incident updates on netlifystatus.com

Long-Term Resilience

  • Set up independent uptime monitoring (Better Stack)
  • Keep build artifacts in CI so you can redeploy to alternatives
  • Use a custom domain with fast TTL DNS for easier migration
  • Consider multi-cloud: same repo deployable to Vercel as backup
  • Set up Slack/email alerts for deploy failures via Netlify notifications

Netlify Uptime โ€” What to Expect

99.99%
CDN target uptime
Netlify's global CDN targets very high availability for static delivery
10s / 26s
Function timeout (free/paid)
Serverless Functions time out at 10s free; 26s on paid plans
400 min
Free build minutes/mo
Free tier includes 400 build minutes; paid plans start at 1,000

For production sites with real SLA requirements, compare Vercel status guide โ€” Netlify's main competitor for JAMstack hosting. Both offer solid uptime; the CDN architecture is similar.

๐Ÿ“ก
Recommended

Monitor your Netlify site availability independently

Better Stack monitors your Netlify site every 30 seconds, independent of Netlify's own status page. Alerts via Slack, email, or PagerDuty when your site goes down.

Try Better Stack Free โ†’

Frequently Asked Questions

Where is the official Netlify status page?

Netlify's official status page is at netlifystatus.com. It shows real-time status for all Netlify components including CDN, Builds, API, Netlify Functions, Edge Functions, Forms, Identity, and Large Media. You can subscribe to email or SMS updates directly from the page. For independent monitoring of your deployed site, use apistatuscheck.com or Better Stack.

Why is my Netlify deploy failing?

Netlify deploy failures are usually caused by: (1) A build pipeline incident โ€” check netlifystatus.com for the 'Builds' component, (2) A failing build command in your repo (check build logs in the Netlify dashboard), (3) Missing environment variables โ€” verify them in Site Settings > Environment Variables, (4) A dependency install error โ€” check if package.json changes broke the install step, (5) Build minute limits on free plans. Always check the full build log before assuming a platform issue.

Why are Netlify Functions returning errors?

Netlify Functions (serverless functions) errors are often caused by: (1) A Functions service incident โ€” check netlifystatus.com for 'Netlify Functions', (2) Cold start timeouts โ€” functions time out after 10 seconds (26 seconds on paid plans), (3) Missing environment variables the function depends on, (4) Memory limit exceeded (1 GB max), (5) An error in the function code itself โ€” check function logs in the Netlify dashboard under Functions > Log. Edge Functions and Serverless Functions have separate status components.

What is the difference between Netlify CDN down and builds down?

Netlify CDN down means the static assets of your deployed site aren't being served to visitors โ€” your site is effectively offline. Builds down means new deployments are stuck or failing, but your currently-deployed site on the CDN continues to serve normally. Always check both components on netlifystatus.com: a CDN issue is urgent (users can't reach your site); a build issue is disruptive but your live site remains up.

Why is my Netlify site slow or returning cached old content?

Netlify site slowness is usually CDN propagation or caching behavior. After a successful deploy, new content can take a few minutes to propagate across all CDN edge nodes. If you're seeing old content, try a hard refresh (Ctrl+Shift+R / Cmd+Shift+R) or test from a different device. For persistent caching issues, check your netlify.toml cache-control headers. A CDN incident on netlifystatus.com would cause widespread slowness across all Netlify sites.

Alert Pro

14-day free trial

Stop checking โ€” get alerted instantly

Next time Netlify goes down, you'll know in under 60 seconds โ€” not when your users start complaining.

  • Email alerts for Netlify + 9 more APIs
  • $0 due today for trial
  • Cancel anytime โ€” $9/mo after trial

Never Miss a Netlify Outage Again

Monitor your Netlify site with independent real-time checks. Know before your users do.

Try Better Stack Free โ€” No Credit Card Required

Or use APIStatusCheck Alert Pro โ€” API monitoring from $9/mo

Related Status Guides

๐ŸŒ Can't Access Netlify?

If Netlify 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 Netlify 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 Netlify 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