Path: blob/main/files/en-us/web/http/status/206/index.md
6552 views
------{{HTTPSidebar}}
The HTTP 206 Partial Content success status response code indicates that the request has succeeded and the body contains the requested ranges of data, as described in the {{HTTPHeader("Range")}} header of the request.
If there is only one range, the {{HTTPHeader("Content-Type")}} of the whole response is set to the type of the document, and a {{HTTPHeader("Content-Range")}} is provided.
If several ranges are sent back, the {{HTTPHeader("Content-Type")}} is set to multipart/byteranges and each fragment covers one range, with {{HTTPHeader("Content-Range")}} and {{HTTPHeader("Content-Type")}} describing it.
Status
Examples
A response containing one single range:
A response containing several ranges:
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
{{HTTPHeader("If-Range")}}
{{HTTPHeader("Range")}}
{{HTTPHeader("Content-Range")}}
{{HTTPHeader("Content-Type")}}