Skip to main content
apiguide.dev

HTTP 206 — Partial Content

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

Status CodeHTTP 206
CategorySuccess (2xx)
API Error Subtypes0 error schemas
HTTP Headers4 headers

What does HTTP status code 206 mean?

The 206 Partial Content status code is returned when the client requested a specific byte range of a resource (using the Range header) and the server is delivering only that portion.

When to use it in APIs

Useful for APIs serving binary files, videos, or large log files, enabling clients to download files in chunks or resume interrupted downloads.

How it compares to other codes

  • 200 OK: Returns the entire resource, not a segmented portion.

Specific API Error Types for 206

No specific Problem+JSON schemas have been defined for HTTP 206 on apiguide.dev yet.

Associated HTTP Headers

Related HTTP Status Codes