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/Gemini Status Guide

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

Where to find the official Google Gemini status page, what each component means, and how to diagnose Gemini API and AI Studio issues in real time.

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

Is Gemini Down Right Now?

Check Google Cloud Service Health at status.cloud.google.com for Gemini API / Vertex AI incidents. For the consumer Gemini app, check gemini.google.com directly or Google Workspace Status.

Where to Find Google Gemini Status

Gemini status is reported across multiple Google dashboards depending on which surface you are using. Use the right dashboard for your use case:

Gemini API (Google AI Studio)
status.cloud.google.com โ†’ filter "Vertex AI" or check ai.google.dev/status
Vertex AI Gemini
status.cloud.google.com โ†’ "Vertex AI" product โ€” enterprise path
Gemini App (Consumer)
gemini.google.com โ€” check if the UI loads; workspace.google.com/intl/en/status/ for Workspace users
Google AI Studio UI
aistudio.google.com โ€” check for UI errors; separate from API availability
Google Cloud Console
console.cloud.google.com โ€” check quota dashboards and error metrics in Cloud Monitoring
Gemini for Workspace (Duet AI)
workspace.google.com/intl/en/status/ โ€” covers Gemini in Docs, Gmail, Meet
Important: Google's status dashboard is notoriously conservative โ€” it often shows "No Issues" during degradations that are detectable via API latency spikes. Always cross-check with your own monitoring and community reports on X/Twitter (@googlecloud).
๐Ÿ“ก
Recommended

Monitor your Gemini API independently

Better Stack probes your Gemini API endpoint every 30 seconds โ€” catch latency spikes and failures before they impact your users, even when Google's dashboard shows all-clear.

Try Better Stack Free โ†’

Gemini API Components and What They Mean

On the Google Cloud Status Dashboard, Gemini-related services appear under several product names. Here is what each covers:

Vertex AI

The primary status product for Gemini API on Vertex AI (aiplatform.googleapis.com). Covers model inference, fine-tuning jobs, and Vertex AI Studio. Enterprise Gemini users should watch this.

Vertex AI Search and Conversation

Covers Gemini-powered search (formerly Enterprise Search) and Dialogflow CX integrations. Separate from base model inference.

Cloud AI Platform

Legacy product name that may still appear for some Gemini API incidents. Overlaps with Vertex AI.

Google AI Studio (generativelanguage.googleapis.com)

The free-tier / API key path. Incidents here are less commonly listed on Cloud Status โ€” check ai.google.dev/status or monitor directly.

Google Workspace (Gemini for Workspace)

Gemini features inside Docs, Gmail, Sheets, and Meet are tracked under workspace.google.com/intl/en/status/ separately from the developer API.

Common Gemini API Errors and What They Mean

ErrorMeaningAction
429 RESOURCE_EXHAUSTEDRate limit or quota exceeded โ€” NOT an outageCheck quota dashboard in Cloud Console; implement exponential backoff
503 Service UnavailableTemporary overload or platform incidentRetry with exponential backoff; check status.cloud.google.com
500 Internal Server ErrorModel inference failure โ€” may be transientRetry once; if persistent, check for Vertex AI incident
400 INVALID_ARGUMENTMalformed request โ€” not a platform issueValidate your prompt format, system instructions, and safety settings
403 PERMISSION_DENIEDAPI key missing Gemini API scope or billing not enabledCheck API key permissions in Google AI Studio or enable billing in Cloud Console
404 Model not foundDeprecated or misspelled model nameUse a current model ID (gemini-1.5-pro, gemini-2.0-flash, gemini-2.5-pro)
RECITATION / SAFETY_BLOCKResponse blocked by safety filters โ€” not a downtime eventAdjust safety settings or rephrase prompt; not platform-side issue
Connection timeout / no responseNetwork issue or severe platform degradationTest with curl to isolate; check status page and retry with different region

Gemini API Troubleshooting: Step-by-Step

1.

Check the Cloud Status Dashboard

Go to status.cloud.google.com and filter for "Vertex AI." If there is an active incident, it explains your errors. Note: Google often lists incidents 20โ€“40 minutes after they are detectable โ€” don't wait for the dashboard if your monitoring already shows failures.

2.

Test with a minimal curl request

Send the smallest possible request directly to the API to isolate whether the issue is in your code or the platform: curl -X POST "https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=YOUR_KEY" -H "Content-Type: application/json" -d '{"contents":[{"parts":[{"text":"Hello"}]}]}'. A 200 response confirms the API is up.

3.

Check your quota usage

Navigate to Google Cloud Console โ†’ APIs & Services โ†’ Gemini API โ†’ Quotas. A 429 error means you have hit Requests Per Minute (RPM) or Tokens Per Minute (TPM) limits โ€” this is NOT a platform outage. Implement exponential backoff with jitter for automatic recovery.

4.

Verify your model ID is current

Google regularly deprecates Gemini model versions. If you are referencing an old model name like gemini-1.0-pro or gemini-pro, it may have been retired. Switch to gemini-1.5-pro-latest, gemini-2.0-flash, or gemini-2.5-pro to use supported versions.

5.

Try a different region (Vertex AI users)

Vertex AI Gemini supports regional endpoints (us-central1, us-east4, europe-west4, asia-southeast1). If one region is degraded, sending requests to a different region can bypass the incident. Update your Vertex AI client location parameter to switch regions.

6.

Check Google AI Studio vs API path

If the AI Studio UI is broken but the API works (or vice versa), these are separate systems. The generativelanguage.googleapis.com endpoint (AI Studio / API key path) and aiplatform.googleapis.com (Vertex AI path) have independent reliability. Consider switching paths as a temporary mitigation.

๐Ÿ“ก
Recommended

Set up Gemini API monitoring in 5 minutes

Better Stack sends Slack, PagerDuty, or email alerts the moment your Gemini API endpoint returns errors or latency spikes โ€” before your users notice.

Try Better Stack Free โ†’

Frequently Asked Questions

Where is the official Google Gemini status page?

Google Gemini's status is tracked via the Google Cloud Service Health dashboard at cloud.google.com/support/docs/dashboard for API-level issues, and the Gemini Apps status at gemini.google.com/faq for consumer-facing issues. Developers using the Gemini API (via Google AI Studio or Vertex AI) should also check status.cloud.google.com and filter for 'Vertex AI' or 'Gemini API' products.

Why is the Gemini API returning errors right now?

Gemini API errors have several common causes: (1) A platform incident โ€” check status.cloud.google.com for active Vertex AI / Gemini API incidents, (2) Rate limiting โ€” the Gemini API has per-minute and per-day quotas; a 429 RESOURCE_EXHAUSTED error means you have hit your quota, not that the API is down, (3) Invalid API key โ€” verify your API key is correct and has access to the Gemini API in Google AI Studio or Google Cloud Console, (4) Model deprecation โ€” older model versions (like gemini-1.0-pro) may be deprecated; switch to gemini-1.5-pro or gemini-2.0-flash, (5) Regional routing โ€” Vertex AI Gemini has regional endpoints; try specifying a different region if one is degraded.

Is Google AI Studio down or is it just the Gemini API?

Google AI Studio (aistudio.google.com) and the Gemini API (generativelanguage.googleapis.com) are related but separate services. AI Studio can be down while the API works fine for SDK users, and vice versa. To check: (1) For AI Studio UI issues: try aistudio.google.com in a private browser window and check Google Workspace Status at workspace.google.com/intl/en/status/, (2) For Gemini API issues: test directly with a curl command using your API key or check status.cloud.google.com. If AI Studio shows errors but the API responds correctly via curl, the issue is in the AI Studio frontend, not the underlying model.

What is the difference between Gemini API via Google AI Studio vs Vertex AI?

Gemini is available through two paths with separate status reporting: (1) Google AI Studio / Gemini API (generativelanguage.googleapis.com) โ€” simpler access with API keys, free tier available, monitored at ai.google.dev, (2) Vertex AI Gemini (aiplatform.googleapis.com) โ€” enterprise-grade, VPC-compatible, monitored at status.cloud.google.com under 'Vertex AI'. An outage on Vertex AI does not always affect the Google AI Studio endpoint and vice versa. If one path is degraded, switching between them is a valid short-term mitigation.

Is Gemini down for everyone or just me?

To determine if Gemini is down globally or locally: (1) Check status.cloud.google.com for Vertex AI / Gemini API incidents โ€” a listed incident means global impact, (2) Test the API directly with a minimal curl command to the generativelanguage.googleapis.com endpoint with your key, (3) Check Google Cloud's Twitter/X (@googlecloud) or Gemini's official channels for announcements, (4) Try a different network (mobile data vs Wi-Fi) to rule out local firewall or DNS issues โ€” some corporate firewalls block Google AI endpoints, (5) Check community forums like Google AI Developer Forum or r/GoogleGeminiAI for reports.

Alert Pro

14-day free trial

Stop checking โ€” get alerted instantly

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

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

Monitor Your Gemini API Independently

Don't rely on Google's status dashboard alone โ€” set up independent monitoring to catch degradations before they impact your users.

Try Better Stack Free โ€” No Credit Card Required

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

Related Status Guides

๐ŸŒ Can't Access Gemini?

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