the IT Hustle
도구실전 매뉴얼소개

HTTP 상태 코드

검색 가능한 HTTP 상태 코드 참조서 — 에이전트의 API 호출이 실제로 무엇을 반환했는지 일반적인 해결책과 함께 해석합니다.

100% 무료 · 제한 없음
62 of 62 codes
100Continue1xx
The server has received the request headers and the client should proceed to send the request body.
사용 사례:Large file uploads — server confirms it will accept the data before the client sends the body.
101Switching Protocols1xx
The server is switching protocols as requested by the client via the Upgrade header.
사용 사례:WebSocket connections — upgrading from HTTP to WebSocket protocol.
102Processing1xx
The server has received and is processing the request, but no response is available yet.
사용 사례:Long-running WebDAV requests to prevent client timeout.
103Early Hints1xx
Used to return some response headers before the final HTTP message.
사용 사례:Preloading resources (CSS, JS) while server prepares the full response.
200OK2xx
The request has succeeded. The meaning depends on the HTTP method used.
사용 사례:Standard successful GET request returning requested data.
201Created2xx
The request has been fulfilled and a new resource has been created.
사용 사례:POST request that creates a new user account or database record.
202Accepted2xx
The request has been accepted for processing, but processing is not complete.
사용 사례:Async job queues — request accepted, processing happens in background.
203Non-Authoritative Information2xx
The returned metadata is not exactly the same as available from the origin server.
사용 사례:Proxy or CDN returning cached/modified headers from upstream.
204No Content2xx
The server successfully processed the request but is not returning any content.
사용 사례:DELETE request — resource removed, nothing to return.
205Reset Content2xx
The server successfully processed the request and asks the client to reset the document view.
사용 사례:Form submission — tells browser to clear/reset the form.
206Partial Content2xx
The server is delivering only part of the resource due to a range header.
사용 사례:Video streaming — serving byte ranges for seek/resume.
207Multi-Status2xx
Conveys information about multiple resources where multiple status codes might be appropriate.
사용 사례:WebDAV batch operations with mixed success/failure results.
208Already Reported2xx
Members of a DAV binding have already been enumerated and are not included again.
사용 사례:WebDAV avoiding duplicate enumeration in recursive responses.
226IM Used2xx
The server has fulfilled a GET request with instance-manipulations applied.
사용 사례:Delta encoding — server sends only changes since last request.
300Multiple Choices3xx
The request has more than one possible response; the user or agent should choose one.
사용 사례:Content negotiation — multiple formats available (JSON, XML, HTML).
301Moved Permanently3xx
The resource has been permanently moved to a new URI.
사용 사례:Domain migration — old URL permanently redirects to new one. SEO-friendly.
302Found3xx
The resource is temporarily located at a different URI.
사용 사례:Temporary redirect during maintenance or A/B testing.
303See Other3xx
The response can be found at another URI using GET.
사용 사례:POST/redirect/GET pattern — redirect after form submission.
304Not Modified3xx
The resource has not been modified since the last request.
사용 사례:Browser cache validation — ETag/If-Modified-Since checks.
305Use Proxy3xx
The requested resource must be accessed through a proxy. (Deprecated)
사용 사례:Deprecated — was used to force proxy usage.
307Temporary Redirect3xx
The resource is temporarily at another URI; method and body must not change.
사용 사례:HTTPS upgrade — redirect HTTP to HTTPS preserving POST method.
308Permanent Redirect3xx
The resource has permanently moved; method and body must not change.
사용 사례:API versioning — permanently redirect old API endpoint to new one.
400Bad Request4xx
The server cannot process the request due to client error (malformed syntax, invalid framing).
사용 사례:Malformed JSON body, missing required fields, invalid query params.
401Unauthorized4xx
The request requires user authentication. The client must authenticate itself.
사용 사례:API call without auth token or with expired JWT.
402Payment Required4xx
Reserved for future use. Sometimes used for digital payment systems.
사용 사례:Paywall — resource requires payment (Stripe integration).
403Forbidden4xx
The server understood the request but refuses to authorize it.
사용 사례:User authenticated but lacks permission (role-based access).
404Not Found4xx
The server cannot find the requested resource.
사용 사례:Requesting a deleted resource or mistyped URL.
405Method Not Allowed4xx
The HTTP method is not supported for the target resource.
사용 사례:Sending PUT to a read-only endpoint that only accepts GET.
406Not Acceptable4xx
The server cannot produce a response matching the Accept headers.
사용 사례:Client requests XML but server only serves JSON.
407Proxy Authentication Required4xx
Authentication with an intermediary proxy is required.
사용 사례:Corporate proxy requiring credentials before forwarding.
408Request Timeout4xx
The server timed out waiting for the request from the client.
사용 사례:Client opened connection but never sent data within time limit.
409Conflict4xx
The request conflicts with the current state of the server.
사용 사례:Creating a user with an email that already exists.
410Gone4xx
The resource is no longer available and will not be available again.
사용 사례:Deliberately removed API endpoint — stronger than 404.
411Length Required4xx
The server requires the Content-Length header to be defined.
사용 사례:Upload endpoint requiring Content-Length for resource allocation.
412Precondition Failed4xx
One or more conditions in the request headers evaluated to false.
사용 사례:Conditional update with If-Match that doesn't match current ETag.
413Payload Too Large4xx
The request entity is larger than the server is willing to process.
사용 사례:File upload exceeding max size (e.g., 10MB limit).
414URI Too Long4xx
The URI requested by the client is longer than the server will interpret.
사용 사례:GET request with extremely long query string.
415Unsupported Media Type4xx
The media format of the requested data is not supported by the server.
사용 사례:Sending application/xml to an endpoint that only accepts JSON.
416Range Not Satisfiable4xx
The range specified in the Range header cannot be fulfilled.
사용 사례:Requesting bytes 1000-2000 of a 500-byte file.
417Expectation Failed4xx
The expectation indicated by the Expect header cannot be met.
사용 사례:Server cannot meet Expect: 100-continue requirement.
418I'm a Teapot4xx
The server refuses to brew coffee because it is, permanently, a teapot.
사용 사례:Easter egg. Defined in RFC 2324 (Hyper Text Coffee Pot Control Protocol).
421Misdirected Request4xx
The request was directed at a server that is not able to produce a response.
사용 사례:HTTP/2 connection reuse to wrong virtual host.
422Unprocessable Entity4xx
The request was well-formed but semantically incorrect.
사용 사례:Valid JSON but business logic validation fails (e.g., end date before start).
423Locked4xx
The resource that is being accessed is locked.
사용 사례:WebDAV file locked by another user for editing.
424Failed Dependency4xx
The request failed due to failure of a previous request.
사용 사례:WebDAV batch operation where a prerequisite step failed.
425Too Early4xx
The server is unwilling to risk processing a request that might be replayed.
사용 사례:TLS 1.3 early data (0-RTT) that server won't process due to replay risk.
426Upgrade Required4xx
The server refuses to perform the request using the current protocol.
사용 사례:Server requires TLS — client must upgrade from HTTP to HTTPS.
428Precondition Required4xx
The server requires the request to be conditional.
사용 사례:Server requires If-Match header to prevent lost update problem.
429Too Many Requests4xx
The user has sent too many requests in a given amount of time.
사용 사례:Rate limiting — API returns this with Retry-After header.
431Request Header Fields Too Large4xx
The server is unwilling to process the request because headers are too large.
사용 사례:Oversized cookies or too many custom headers.
451Unavailable For Legal Reasons4xx
The resource is unavailable due to legal demands (censorship, court order).
사용 사례:Content blocked by government order or DMCA takedown.
500Internal Server Error5xx
The server encountered an unexpected condition that prevented it from fulfilling the request.
사용 사례:Unhandled exception in server code — generic catch-all error.
501Not Implemented5xx
The server does not support the functionality required to fulfill the request.
사용 사례:HTTP method not implemented (e.g., PATCH on legacy server).
502Bad Gateway5xx
The server received an invalid response from an upstream server.
사용 사례:Nginx/load balancer cannot reach the application server.
503Service Unavailable5xx
The server is currently unable to handle the request due to overload or maintenance.
사용 사례:Planned maintenance or server overload — use with Retry-After.
504Gateway Timeout5xx
The server did not receive a timely response from an upstream server.
사용 사례:Reverse proxy timeout — backend took too long to respond.
505HTTP Version Not Supported5xx
The server does not support the HTTP version used in the request.
사용 사례:Client using HTTP/3 on a server that only supports HTTP/1.1.
506Variant Also Negotiates5xx
Transparent content negotiation results in a circular reference.
사용 사례:Misconfigured content negotiation on server.
507Insufficient Storage5xx
The server is unable to store the representation needed to complete the request.
사용 사례:WebDAV server ran out of disk space.
508Loop Detected5xx
The server detected an infinite loop while processing the request.
사용 사례:WebDAV infinite loop in resource binding.
510Not Extended5xx
Further extensions to the request are required for the server to fulfill it.
사용 사례:Server requires additional HTTP extension not provided.
511Network Authentication Required5xx
The client needs to authenticate to gain network access.
사용 사례:Captive portal — hotel/airport WiFi login page.
완전한 레퍼런스
1xx부터 5xx까지 모든 표준 HTTP 상태 코드를 RFC 기반의 정확한 설명과 함께 제공합니다.
실전 사용 사례
각 코드에 실용적인 사용 사례가 포함되어 API에서 언제 어떻게 사용해야 하는지 알 수 있습니다.
100% 클라이언트 사이드
데이터가 브라우저를 떠나지 않습니다. 서버 호출, 로깅, 추적이 없습니다. 완전히 비공개입니다.

HTTP 상태 코드 조회하는 방법

The IT Hustle의 인터랙티브 참조 가이드로 HTTP 상태 코드를 찾고 이해하세요.

  1. 1
    검색 또는 탐색검색창에 상태 코드 번호나 키워드를 입력하거나 카테고리별(1xx, 2xx, 3xx, 4xx, 5xx)로 탐색하세요.
  2. 2
    설명 읽기각 상태 코드에는 평이한 설명, 흔한 원인, 언제 마주치게 되는지가 함께 제공됩니다.
  3. 3
    해결 방법 확인오류 코드(4xx, 5xx)의 경우 제안된 해결 방법과 디버깅 단계를 읽고 문제를 해결하세요.

자주 묻는 질문

401 Unauthorized는 요청에 유효한 인증 정보가 없어 사용자가 로그인해야 함을 의미합니다. 403 Forbidden은 서버가 요청을 이해했지만 승인을 거부한 것으로, 로그인은 되어 있지만 권한이 없는 상태입니다.

502 오류는 게이트웨이 역할을 하는 서버(Nginx나 로드 밸런서 등)가 업스트림 서버로부터 잘못된 응답을 받았다는 의미입니다. 백엔드 프로세스 충돌이나 서버 과부하가 흔한 원인입니다.

그렇습니다. 100 Continue부터 511 Network Authentication Required까지 모든 표준 상태 코드를 다루며, 418 I'm a Teapot 같은 잘 알려지지 않은 코드도 포함합니다.

관련 도구

cURL Builder네트워크 도구SEO 체커