HTTP status code 206 — Partial Content

Quick answer

Status code 206 (Partial Content): Server delivered only part of the resource. Used with Range requests for resumable downloads and media streaming.

Used with Range requests for resumable downloads and media streaming.

206 responses include Content-Range. Clients that send Range must handle 206 (or 416 if the range is unsatisfiable).

Common causes

How to fix it

Read Content-Range to know which bytes you got, and append rather than overwrite the local file.

All HTTP status codesJSON Formatter

Related: 204202201200301302

Frequently asked questions

What is status code 206?

206 Partial Content: Server delivered only part of the resource. Used with Range requests for resumable downloads and media streaming.

When should I expect HTTP 206?

206 responses include Content-Range. Clients that send Range must handle 206 (or 416 if the range is unsatisfiable).

What usually causes HTTP 206?

Video/audio seeking (Range: bytes=...); Resumable download managers continuing a partial file.

How do I fix HTTP 206?

Read Content-Range to know which bytes you got, and append rather than overwrite the local file.

Where can I see all status codes?

Open the HTTP status codes hub on TryDevSnip for the full reference list.

Does TryDevSnip log my API traffic?

No. These pages are static reference. TryDevSnip does not proxy or inspect your HTTP calls.

TryDevSnip