Is Portkey Down? How to Check Portkey AI Gateway Status in 2026

Complete guide to verifying Portkey AI gateway outages, diagnosing routing failures, and keeping your AI application running when the gateway goes dark.

8 min read
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

Portkey has become the go-to AI gateway for teams that need unified routing, observability, and fallback logic across multiple LLM providers. It sits between your application and providers like OpenAI, Anthropic, Google, and Mistral — which means when Portkey goes down, it can silently break your entire AI stack.

Whether you're seeing 502 Bad Gateway errors, requests timing out mid-stream, or observability logs suddenly going silent, this guide will help you determine: is Portkey down, or is the problem upstream with your AI provider?

How to Check if Portkey is Down (Fastest Methods)

1. Check the Official Portkey Status Page

Portkey maintains a live status page at status.portkey.ai. It shows real-time uptime for the gateway API, routing engine, and the observability dashboard. Active incidents are posted here as soon as Portkey's engineering team confirms them.

2. Test the Gateway Endpoint Directly

Send a minimal request to isolate whether the problem is the Portkey gateway or your upstream provider:

curl https://api.portkey.ai/v1/chat/completions \
  -H "x-portkey-api-key: $PORTKEY_API_KEY" \
  -H "x-portkey-provider: openai" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"gpt-4o-mini","messages":[{"role":"user","content":"ping"}]}'

A 401 means an API key problem. A 502 or 504 points to the Portkey gateway itself failing. A 200 from a direct OpenAI call (bypassing Portkey) confirms Portkey is the issue.

3. Bypass Portkey and Call Your Provider Directly

The fastest diagnostic: call OpenAI or Anthropic directly, bypassing the Portkey gateway. If the direct call succeeds and the Portkey-routed call fails, Portkey is down. This also serves as your immediate workaround to keep production running.

4. Search X (Twitter) for Real-Time Developer Reports

Search "Portkey down" or "Portkey AI gateway" on X filtered by Latest. The developer community surfaces AI tool outages on X within minutes — often before the official status page is updated.

5. Use API Status Check for Automated Gateway Monitoring

For production systems, API Status Check monitors Portkey's gateway endpoints every 30 seconds and sends instant alerts via Slack, email, or PagerDuty. You'll know about outages before your users do.

📡
Recommended

Monitor Your AI Gateway Layer

Don't let Portkey outages silently break your AI stack. Get professional gateway monitoring and instant failover alerts.

Try Better Stack Free →

Why Does Portkey Go Down?

Portkey's role as a middleware gateway creates specific failure patterns distinct from direct AI provider outages:

  • Routing Engine Failures: Portkey's load balancing and fallback routing logic runs on its own infrastructure. A bug in a routing rule or a routing engine crash can silently drop requests even when all upstream providers are healthy.
  • Upstream Provider Cascades: When OpenAI or Anthropic slows down, Portkey's retry and fallback logic can overload its own gateway — turning a partial upstream slowdown into a full gateway outage for high-volume customers.
  • Rate Limit Accounting Delays: Portkey tracks token usage across providers for rate limiting and cost tracking. Database lag in the accounting layer can cause requests to be incorrectly throttled or dropped.
  • Observability Pipeline Backup: Portkey's logging and analytics pipeline can back up under heavy load, slowing the main request path as logs are written synchronously in some configurations.
  • Config Propagation Lag: Changes to virtual keys, provider configs, or routing rules may take time to propagate across Portkey's edge nodes, causing inconsistent behavior that looks like an intermittent outage.
  • Planned Maintenance: Portkey schedules maintenance windows for major updates. Check their status page and changelog for scheduled downtime notices.

Common Portkey Error Codes and What They Mean

502 Bad Gateway

The Portkey gateway received an invalid response from an upstream service — either from your AI provider or from Portkey's internal routing layer. Most common during provider outages that cascade into the gateway.

504 Gateway Timeout

Portkey's gateway timed out waiting for a response from your AI provider. Can indicate a slow upstream provider or a Portkey routing bottleneck under high load.

429 Too Many Requests

You've hit Portkey's rate limits or your virtual key's budget cap. Not an outage — check your Portkey dashboard for usage and limit settings.

401 Unauthorized

Invalid or expired Portkey API key, or a misconfigured virtual key. Regenerate your key in the Portkey dashboard and update your application config.

503 Service Unavailable

The Portkey gateway itself is temporarily unavailable. Check the status page — this typically indicates a confirmed incident or planned maintenance window.

What to Do When Portkey Is Down

  1. Confirm it's Portkey, not your provider: Call your AI provider (OpenAI, Anthropic, etc.) directly, bypassing Portkey entirely. If the direct call works, Portkey is the issue.
  2. Switch to direct provider routing temporarily: Update your application's base URL from Portkey's gateway endpoint to the provider's native endpoint. This keeps production running while Portkey resolves the incident.
  3. Check your virtual key config: Verify your Portkey virtual keys are active and have remaining budget. Expired or overloaded virtual keys can mimic gateway outages.
  4. Monitor the Portkey status page: Subscribe to incident updates at status.portkey.ai for real-time notifications on resolution progress.
  5. Set up automated monitoring: Configure API Status Check to ping both your Portkey gateway endpoint and your direct provider endpoint. If Portkey goes down in the future, you'll get an alert within 30 seconds.

Alert Pro

14-day free trial

Stop checking — get alerted instantly

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

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

Portkey Alternatives When the Gateway is Down

If Portkey is down and you need an AI gateway solution right now, these alternatives can handle routing and load balancing across multiple AI providers:

  • LiteLLM: Open-source AI gateway supporting 100+ LLM providers. Self-hostable and battle-tested for production routing and fallbacks.
  • Helicone: AI observability and gateway platform with built-in request logging, cost tracking, and provider routing.
  • Direct Provider SDK: Fall back to calling OpenAI, Anthropic, or your preferred provider directly using their official SDK — no gateway dependency.
  • OpenRouter: Hosted AI routing service with access to 200+ models, built-in fallbacks, and a single unified API.

Frequently Asked Questions

How do I know if Portkey is down?

Check status.portkey.ai for the official incident page, test the gateway with a cURL call, or compare a Portkey-routed request against a direct provider call. If the direct call succeeds and the gateway call fails, Portkey is the issue.

Why does Portkey go down?

Common causes include routing engine failures, cascading slowdowns from upstream AI providers (OpenAI, Anthropic), rate limit accounting delays, and config propagation lag across Portkey's edge network.

What should I do when Portkey is down?

Bypass the gateway and call your AI provider directly to keep production running. Update your application base URL to the provider's native endpoint temporarily. Monitor status.portkey.ai for resolution updates.

How long do Portkey outages last?

Minor disruptions typically resolve in 10–30 minutes. Major gateway incidents can last 1–2 hours. Portkey posts live updates on their status page during active incidents.

Can I monitor Portkey automatically?

Yes. API Status Check monitors your Portkey gateway endpoint continuously, alerting you via Slack, email, or PagerDuty the moment downtime is detected — typically within 30 seconds of an outage starting.

🛠 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.

ElevenLabsBest for AI Voice

AI Voice & Audio Generation

Used by 1M+ developers

Text-to-speech, voice cloning, and audio AI for developers. Build voice features into your apps with a simple API.

The best AI voice API we've tested — natural-sounding speech with low latency. Essential for any app adding voice features.

Free tier · Paid from $5/moTry ElevenLabs Free
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