Skip to main content
apiguide.dev

HTTP 100 — Continue

The server has received the request headers and the client should proceed to send the request body.

Status CodeHTTP 100
CategoryInformational (1xx)
API Error Subtypes0 error schemas
HTTP Headers1 header

What does HTTP status code 100 mean?

The 100 Continue status code is an informational response indicating that the initial part of the request has been received and has not yet been rejected by the server. The client should continue with the request or ignore this response if the request has already been finished.

When to use it in APIs

Typically used in large file uploads (like media or bulk datasets) using the Expect: 100-continue header. The client sends headers first to check if the server will accept the request (based on authorization, content size, etc.) before uploading the heavy body payload.

How it compares to other codes

  • 103 Early Hints: Used to send headers (like preloading assets) before the final response, whereas 100 is strictly a gatekeeper for body uploads.

Specific API Error Types for 100

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

Associated HTTP Headers

Related HTTP Status Codes