Free 3 min read

Is Cohere Down?

Check live Cohere API status — Command R+, Embed, Rerank, and Classify endpoints. See recent incidents and set up free email alerts.

Cohere live status

Cohere — live status

Updated every 5 minutes. Click the badge or visit prismix.dev/service/cohere for the full incident history.

Full status →

Quick check: is the Cohere API down right now?

The fastest ways to check Cohere API availability:

  1. Prismix: prismix.dev/service/cohere — live status + 30-day uptime + incidents aggregated in one place.
  2. Cohere status page: status.cohere.com — official incidents reported directly by Cohere.
  3. Direct probe: curl https://api.cohere.com/v1/models -H "Authorization: Bearer $COHERE_API_KEY"

Step 1 — Set up free email alerts for Cohere

Get emailed the moment Cohere API status changes. 2-minute setup, free tier, no credit card:

  1. 1

    Sign in

    Go to prismix.dev/sign-in — enter your email and a 6-digit OTP code, or sign in with GitHub.

  2. 2

    Star Cohere

    On prismix.dev/status or prismix.dev/service/cohere, click the ☆ star icon.

  3. 3

    Alerts are live

    You'll get an email within minutes of any status change — degraded, outage, or recovery.

Step 2 — Monitor Cohere API programmatically

Use the Prismix API in your CI pipeline or monitoring script:

curl

curl https://prismix.dev/api/v1/statuses | jq '.services[] | select(.id=="cohere")'

Python (with Cohere SDK guard)

import cohere

co = cohere.ClientV2(api_key="YOUR_KEY")

# Health check: list models (fast, low cost)
try:
    models = co.models.list()
    print(f"Cohere operational: {len(models.models)} models available")
except cohere.errors.CohereAPIError as e:
    # status 503 = service degraded, 429 = rate limited
    print(f"Cohere issue: {e.status_code} — {e.body}")

Direct API probe

# 401 = API is up (key required), 5xx = outage
curl -I -s https://api.cohere.com/v1/models | head -1

Common causes of "Cohere API not working"

If Prismix shows Cohere as "Operational" but your calls are failing:

  • Wrong base URL — use api.cohere.com/v1 — the legacy domain api.cohere.ai is deprecated but still resolves; the canonical is https://api.cohere.com/v1. Update to cohere-sdk >= 5.0 which uses the new domain automatically.
  • Command R vs Command R+ model IDs — use command-r-plus or command-r (hyphenated, lowercase). Older IDs like command without a version suffix still route to older models.
  • Trial key hitting daily limits (429) — trial API keys have low RPM and daily token caps. Production keys require upgrading at dashboard.cohere.com. Check the X-RateLimit-Remaining header on every response.
  • Embed endpoint dimension mismatchembed-english-v3.0 returns 1024 dimensions by default. If your vector store expects a different size, pass input_type and set dimensions explicitly in the request.
  • Rerank scores clustering near 0 or 1 — Rerank scores are relative, not absolute probabilities. Scores that all cluster near 0.0 or 1.0 usually mean the documents are too similar to each other or the query is too generic; refine the query before diagnosing an API issue.
  • EU data residency endpoint — EU-contracted customers must use api.eu.cohere.com instead of the global endpoint. Using the wrong endpoint violates data residency terms; verify your contract before choosing the endpoint.
🔔

Stop manually checking — get alerts instead

Star Cohere on Prismix and get emailed the moment status changes. Free, no credit card.

Monitor other enterprise AI APIs?

Prismix monitors 75+ AI services. Related enterprise API providers:

Full status dashboard: prismix.dev/status