WebmasterID logoWebmasterID
Crawl diagnostics

HTTP 206 Partial Content and range requests

206 Partial Content is the response to a range request: the client asked for a byte range of a resource and the server returned just that portion. It underpins resumable downloads and media streaming, where players fetch a file in chunks. In crawler logs it usually reflects media or large-file fetching rather than page crawling.

Verified against primary sources

What 206 means

206 Partial Content is returned when the server fulfils a range request — the client sent a Range header asking for specific byte ranges, and the server replied with only those bytes plus a Content-Range header. It is how clients resume interrupted downloads and how media players stream large files without fetching everything at once.

It is a success status, but a partial one: the body is a slice, not the whole resource.

206 and crawling media

Range requests matter most for large binary resources. A video player, for instance, requests ranges to start playback quickly and seek within a file. Crawlers that fetch media may also use ranges, producing 206 responses.

For ordinary HTML pages, 206 is not expected — pages are small and fetched whole as 200. If you see 206 patterns, they typically map to media, PDFs, or downloads. Make sure your origin and CDN support range requests so those resources behave correctly.

Operator checklist

Confirm your server and CDN honour range requests (Accept-Ranges) for media and large downloads. Verify Content-Range and the partial body are correct. Expect 206 on media resources, and treat 206 on an HTML page URL as unusual and worth checking.

How it appears in analytics and logs

A 206 means the server returned a requested byte range rather than the whole resource. It indicates range-request behaviour — common for video, audio, and large downloads — not standard HTML page crawling.

Diagnostic use case

Understand 206 responses tied to media and large files, and confirm range support works for the resources that rely on it.

What WebmasterID can help detect

WebmasterID can surface where 206s occur, helping you see range-request activity on media and large files separately from ordinary page fetches.

Common mistakes

Privacy and accuracy notes

Status codes carry no personal data. WebmasterID reports 206 patterns for crawler traffic without exposing individual visitors.

Related pages

Sources and verification notes

Last reviewed 2026-06-24. Facts are checked against primary/official sources where available; uncertain specifics are marked “Data not yet verified” rather than guessed.