What Does HTTP Status 401 Mean? (Unauthorized)

What HTTP 401 (Unauthorized) Means In Plain English

A 401 status (Unauthorized) means authentication is required or the provided auth credentials are invalid.

If you want the broader context across all status code families, use the full HTTP Status Codes Guide (2xx, 3xx, 4xx, 5xx).

Quick Navigation

How to Read HTTP 401 in WebsiteDown Results

In down checks, 401 usually means the service is reachable. The issue is often with auth tokens, session handling, or identity provider dependencies.

If you see this code only in one region, compare with official provider status and retest from another network. Mixed regional results often indicate routing, policy, or edge differences rather than full global outages.

For deeper triage, compare this with the HTTP 403 guide, HTTP 302 guide, and the SaaS login outage guide.

Most Common Root Causes

What to Do Next

  1. Verify token lifetime, issuer, audience, and signature configuration.
  2. Test with a fresh authentication flow from a clean session.
  3. Check IdP status and callback URL consistency.
  4. Correlate 401 spikes with deployments in auth middleware.

What to Avoid During Triage

Real-World Examples

Share this guide:

FAQ

Is 401 an outage?

Not usually. It is typically an authentication path issue while core host reachability remains intact.

What is the difference between 401 and 403?

401 is “not authenticated or invalid credentials”; 403 is “authenticated but not allowed”.

Should I invalidate all sessions during 401 spikes?

Only if evidence points to compromised or incompatible session state.