2xx SuccessHTTP Status Code Reference
HTTP 206 Partial Content— What It Means, Causes & How to Fix It
The server is delivering only part of the resource due to a Range header sent by the client. This is used for resumable downloads and streaming media where only a portion of the content is requested.
Live URL Status Checker
Enter any URL to see its real HTTP response code
Common Causes
- Resumable file download requesting a specific byte range
- Video or audio streaming fetching chunks
- Download manager splitting a file into parallel downloads
How to Fix
- 1No fix needed — partial content delivery is working correctly
- 2Verify the Content-Range header in the response
- 3Ensure the server supports Range requests for the resource
Example
HTTP 206 Partial Content
GET /video.mp4 HTTP/1.1 Range: bytes=0-1023 → 206 Partial Content → Content-Range: bytes 0-1023/1048576
Related Success Codes
Commonly Referenced Status Codes
The most frequently searched HTTP status codes