2xx Success
You asked for just a piece of a file (like pages 5-10 of a book), and here's that specific piece you wanted!
Use 206 when a valid Range request asks for one or more portions of a representation.
GET https://api.example.test/video.mp4
# Headers
Range: bytes=1000000-2000000206 Partial Content
# Headers
Content-Range: bytes 1000000-2000000/50000000
# Body
<partial representation>The server returns only the requested portion of the file instead of the entire video.
GET https://api.example.test/largefile.zip
# Headers
Range: bytes=5242880-206 Partial Content
# Headers
Content-Range: bytes 5242880-10485759/10485760
# Body
<partial representation>The client resumes a download from byte 5 MB instead of starting the transfer over.