Is Facebook or Instagram Down? Meta Platform Status Guide (2026)
Is Facebook or Instagram Down Right Now?
Meta operates one of the largest social media infrastructures on earth. When Facebook, Instagram, WhatsApp, or Threads go down — as they famously did in October 2021 for 6 hours — the impact is global and immediate.
With 3+ billion daily active users across Meta properties, outages affect not just casual users but businesses that rely on Meta for advertising, e-commerce, and customer communication.
Official Status Pages
| Platform | Status URL | Coverage |
|---|---|---|
| Facebook Platform Status | https://developers.facebook.com/status | Graph API, Marketing API, Login |
| Instagram Platform Status | https://developers.facebook.com/status | Instagram Graph API, Basic Display API |
| WhatsApp Business | https://business.whatsapp.com | WhatsApp Business API / Cloud API |
| Downdetector — Facebook | https://downdetector.com/status/facebook | Crowdsourced user reports |
| Downdetector — Instagram | https://downdetector.com/status/instagram | Crowdsourced user reports |
Meta's developer status page is your best signal for API and platform-level issues. Consumer-facing issues often lag by 30-60 minutes before appearing there.
Meta Platform Components
| Component | What It Does | Signs of Failure |
|---|---|---|
| News Feed | Main content feed | Blank feed, infinite loading, stale content |
| Messenger | Chat + calls | Messages stuck sending, calls dropping |
| Marketplace | Buy/sell listings | Listings won't load, transactions blocked |
| Groups | Community pages | Can't post, comments not showing |
| Reels/Stories | Short-form/disappearing video | Videos won't play or upload fails |
| Login (OAuth) | "Login with Facebook" on 3rd party sites | Third-party logins fail across the web |
| Component | What It Does | Signs of Failure |
|---|---|---|
| Feed | Main photo/video feed | Blank feed, posts not loading |
| Stories | Disappearing content | Stories fail to load or publish |
| Reels | Short-form video | Playback failure, blank explore page |
| Direct (DMs) | Private messaging | Messages stuck, media won't load |
| Shopping | In-app product tags/checkout | Product tags missing, checkout broken |
| Graph API | Programmatic access | 4xx/5xx on API calls |
| Component | What It Does | Signs of Failure |
|---|---|---|
| Messaging | Text messages | Messages stuck with single tick (✓) |
| Media delivery | Photos, videos, documents | Media won't download or send |
| Voice/Video calls | Audio and video calls | Calls won't connect or drop immediately |
| WhatsApp Cloud API | Meta-hosted business messaging | Webhook delivery failures, send errors |
Is It Meta, or Is It Me?
| Symptom | Likely Meta Issue | Likely Local Issue |
|---|---|---|
| All Meta apps fail simultaneously | ✅ Platform routing issue | Very unlikely — check anyway |
| One app works, others don't | ✅ Service-specific outage | Try reinstalling the failing app |
| API returns 503/504 | ✅ Backend degraded | Check access token validity first |
| Images load, videos won't | ✅ Video CDN partial outage | Test on different network |
| Can't log in to Facebook | ✅ Auth service issue | Clear cookies, try incognito |
| "Login with Facebook" fails on 3rd party sites | ✅ OAuth endpoint issue | Try email/password login instead |
| Works on WiFi, not mobile data | ❌ Carrier/ISP issue | Contact mobile carrier |
| Works on desktop, not mobile app | ❌ App version issue | Update the app |
| "Unusual activity" login blocked | ❌ Account security trigger | Complete identity verification |
Quick Network Diagnostic
# Test basic Meta connectivity
ping -c 4 facebook.com
ping -c 4 instagram.com
# Test DNS resolution
nslookup facebook.com 8.8.8.8
# Test HTTPS
curl -I https://www.facebook.com
curl -I https://www.instagram.com
# Test Graph API (should return 400 with error, not 503)
curl "https://graph.facebook.com/v19.0/me"
# Response: {"error":{"type":"OAuthException"...}} = API is UP
# Response: 503/504 = API is DOWN
The October 2021 Lesson: BGP Withdrawal
Meta's historic 6-hour outage (October 4, 2021) was caused by a BGP route withdrawal that took down not just the apps but Meta's own internal tools, DNS, and even physical access systems. Engineers couldn't log into their own servers to fix it.
Key lessons:
- Single points of failure in BGP routing can cascade to everything
- "Login with Facebook" failures cascade to thousands of third-party sites
- Meta's internal systems share infrastructure with consumer products
- DNS entries can be fully withdrawn — affecting resolution at ISP level
For businesses: never make Meta your single identity provider or communication channel.
Q1 2026 Incident History
| Date | Platform | Issue | Duration |
|---|---|---|---|
| Mar 11, 2026 | Stories + Reels upload failure | ~3 hours | |
| Feb 20, 2026 | Voice calls degraded (EU region) | ~2 hours | |
| Feb 3, 2026 | Marketplace search unavailable | ~5 hours | |
| Jan 16, 2026 | All platforms | Graph API elevated error rate | ~90 minutes |
| Jan 7, 2026 | News Feed algorithm refresh stall | ~4 hours |
When Meta Is Down: Business Continuity
For Advertisers
- Ads Manager unreachable: Campaigns auto-pause at budget — don't panic-cancel
- Pixel not firing: Log internal session data as backup; gaps are expected
- Lead form submissions lost: Integrate webhook delivery to your CRM separately from Meta's batch export
For E-commerce (Instagram/Facebook Shop)
- Instagram Shopping checkout down: Direct customers to your website (keep URL in bio at all times)
- Product catalog sync failing: Maintain standalone Shopify/WooCommerce as source of truth
For Customer Support (WhatsApp Business)
- Immediate: Switch incoming contacts to email or live chat widget
- Outbound: Queue messages — WhatsApp Cloud API supports delivery when restored
- Status updates: Post to your own status page and email list
Meta API Rate Limits (2026)
Most "Meta is down" developer reports are actually rate limit errors:
| App Type | Rate Limit |
|---|---|
| Standard access | 200 API calls/hour/user |
| Advanced access | 4,800 API calls/hour/user |
| WhatsApp Business-initiated templates | 250 messages/24h (scales with quality rating) |
| WhatsApp user-initiated sessions | Unlimited within 24h session window |
Check the x-app-usage response header: {"call_count": N, "total_cputime": N, "total_time": N}. Values approaching 100 mean you're near the rate limit.
Set Up Proactive Meta Monitoring
Monitor these endpoints to catch Meta outages before your users do:
- https://www.facebook.com — web availability check
- https://www.instagram.com — web availability check
- https://graph.facebook.com/v19.0 — API health (expect HTTP 400, not 503)
ezmon.com monitors Meta properties from multiple global locations with 60-second check intervals, alerting your team before users notice.
Related Status Guides
- Is Twitter/X Down? — Social media platform
- Is Slack Down? — Business communication
- Is Shopify Down? — E-commerce platform (Meta Shops integration)
- Is Stripe Down? — Payments (Facebook/Instagram Checkout)
- Is HubSpot Down? — CRM (Meta Ads integration)
All incident data sourced from Meta's official developer status page and public announcements. Monitoring by ezmon.com — multi-location uptime monitoring for production systems.