206

Partial Content

The server is delivering only part of the resource due to a range header sent by the client.

Common Use

Used for resumable downloads, video streaming (seeking), and large file downloads split into chunks. Supports parallel download segments.

API Endpoint

https://codes.uncodigo.com/http/206

Example with curl

curl -i https://codes.uncodigo.com/http/206

Try It

GET /http/206
Click "Send Request" to see the response...

Example

Request

GET /video.mp4 HTTP/1.1
Range: bytes=0-1023

Response

HTTP/1.1 206 Partial Content
Content-Range: bytes 0-1023/2048

Related Headers

Content-Range

Indicates the part of the resource being sent

Content-Range: bytes 0-1023/2048