Error Codes Wiki

HTTP 206 Partial Content — Range Request Response

Informational2xx success

Overview

HTTP 206 Partial Content is returned when the server sends only part of the resource as requested by Range header.

Key Details

  • Status: 206 Partial Content
  • Category: 2xx Success
  • Only part of the resource is returned
  • Used with Range requests for large files

Common Causes

  • Client requested a specific byte range
  • Video/audio streaming using range requests
  • Resuming a paused download
  • PDF viewer loading page by page

Steps

  1. 1Set Range header in the request
  2. 2Check Content-Range in the response
  3. 3Handle multipart responses if requesting multiple ranges
  4. 4Use for implementing download resume functionality

Tags

http-status2xx-successhttp-206httpstatus-code

More in 2xx Success

Frequently Asked Questions

Mainly for video streaming and resumable file downloads.