What Does HTTP Status 206 Mean? (Partial Content)

What HTTP 206 (Partial Content) Means In Plain English

A 206 status (Partial Content) means the server delivered only part of the resource because the client asked for a specific byte range.

This is normal for video streaming, download resume, and large files. It is usually a healthy behavior when range requests are expected.

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 206 in WebsiteDown Results

In WebsiteDown checks, 206 indicates the server is reachable and capable of responding. It should be interpreted as available service, not a hard outage.

However, repeated 206 with stalled playback or failed downloads can indicate CDN range handling issues or origin mismatch.

For triage, compare this with HTTP 200, HTTP 502, and the CDN regional diagnostics guide.

Most Common Root Causes

What to Do Next

  1. Verify `Accept-Ranges` and `Content-Range` headers are correct for the requested object.
  2. Test the same asset from multiple regions to detect edge-specific partial-content problems.
  3. Confirm that backend and CDN agree on object length and byte ranges.
  4. Check for intermittent 206 mixed with 503 or 504 during load spikes.

What to Avoid During Triage

Real-World Examples

Share this guide:

FAQ

Is HTTP 206 a downtime signal?

Usually no. It is often expected for range-based delivery. Treat it as a normal availability signal unless users still fail to complete downloads or playback.

Why would some regions show 206 and others 200?

Different caches, range support, and client behavior can lead to mixed but healthy status patterns. Investigate only when user impact appears.

Can 206 hurt SEO?

Not typically for normal web pages. It is more relevant to media and file transfer workflows than standard crawl/index paths.