~/devtools / http-status
tool::http-status

HTTP
상태 코드

1xx부터 5xx까지 모든 HTTP 상태 코드를 카테고리별로 탐색하고 검색합니다.

ad · 728×90
61 / 61
100
Continue
Client should continue with the request.
1xx
101
Switching Protocols
Server is switching protocols as requested.
1xx
102
Processing
Server has received the request but has not yet completed it.
1xx
103
Early Hints
Used to preload resources while the server is still processing.
1xx
200
OK
The request has succeeded.
2xx
201
Created
The request has been fulfilled and a new resource has been created.
2xx
202
Accepted
The request has been accepted but not yet acted upon.
2xx
203
Non-Authoritative Information
The response is from a transforming proxy, not the origin server.
2xx
204
No Content
The server successfully processed the request but returns no content.
2xx
205
Reset Content
The server processed the request; the client should reset the document view.
2xx
206
Partial Content
The server is returning partial content due to a Range header.
2xx
207
Multi-Status
Multiple status codes for multiple independent operations (WebDAV).
2xx
208
Already Reported
Members of a DAV binding have already been enumerated.
2xx
226
IM Used
The server fulfilled the request using instance manipulations.
2xx
300
Multiple Choices
Multiple options for the requested resource.
3xx
301
Moved Permanently
The resource has permanently moved to a new URL.
3xx
302
Found
The resource is temporarily at a different URL.
3xx
303
See Other
Redirect to another resource using GET.
3xx
304
Not Modified
The cached version is still valid; no new content to return.
3xx
307
Temporary Redirect
Temporary redirect preserving the original HTTP method.
3xx
308
Permanent Redirect
Permanent redirect preserving the original HTTP method.
3xx
400
Bad Request
The server could not understand the request due to invalid syntax.
4xx
401
Unauthorized
Authentication is required and has failed or not been provided.
4xx
402
Payment Required
Reserved for future use; some services use it for payment walls.
4xx
403
Forbidden
The server refuses to fulfill the request (authenticated but unauthorized).
4xx
404
Not Found
The requested resource could not be found.
4xx
405
Method Not Allowed
The HTTP method is not supported for this resource.
4xx
406
Not Acceptable
No content matching the Accept headers is available.
4xx
407
Proxy Authentication Required
Authentication with a proxy is required.
4xx
408
Request Timeout
The server timed out waiting for the request.
4xx
409
Conflict
The request conflicts with the current state of the server.
4xx
410
Gone
The resource has been permanently deleted and will not return.
4xx
411
Length Required
The Content-Length header is required but not provided.
4xx
412
Precondition Failed
One or more conditions in the request headers evaluated to false.
4xx
413
Content Too Large
The request body exceeds the server's size limit.
4xx
414
URI Too Long
The request URI is longer than the server can process.
4xx
415
Unsupported Media Type
The media type of the request is not supported.
4xx
416
Range Not Satisfiable
The range specified in the Range header cannot be fulfilled.
4xx
417
Expectation Failed
The expectation in the Expect header cannot be met.
4xx
418
I'm a Teapot
The server refuses to brew coffee; it is a teapot (RFC 2324).
4xx
421
Misdirected Request
The request was directed at a server unable to produce a response.
4xx
422
Unprocessable Content
The request is well-formed but contains semantic errors.
4xx
423
Locked
The resource being accessed is locked (WebDAV).
4xx
424
Failed Dependency
The request failed because a previous request failed (WebDAV).
4xx
425
Too Early
The server is unwilling to process a potentially replayed request.
4xx
426
Upgrade Required
The client should switch to a different protocol.
4xx
428
Precondition Required
The server requires the request to be conditional.
4xx
429
Too Many Requests
The user has sent too many requests in a given time (rate limiting).
4xx
431
Request Header Fields Too Large
Request headers are too large for the server to process.
4xx
451
Unavailable For Legal Reasons
The resource is unavailable due to legal restrictions.
4xx
500
Internal Server Error
The server encountered an unexpected condition.
5xx
501
Not Implemented
The server does not support the requested functionality.
5xx
502
Bad Gateway
The gateway received an invalid response from an upstream server.
5xx
503
Service Unavailable
The server is temporarily unable to handle the request.
5xx
504
Gateway Timeout
The gateway did not receive a timely response from an upstream server.
5xx
505
HTTP Version Not Supported
The HTTP version used in the request is not supported.
5xx
506
Variant Also Negotiates
A circular reference in transparent content negotiation.
5xx
507
Insufficient Storage
The server is unable to store the representation (WebDAV).
5xx
508
Loop Detected
An infinite loop was detected while processing the request (WebDAV).
5xx
510
Not Extended
Further extensions to the request are required.
5xx
511
Network Authentication Required
Network authentication is required before accessing resources.
5xx
ad · 300×250
// about this tool

HTTP 상태 코드에 대해

HTTP 상태 코드는 클라이언트의 요청에 대한 서버의 응답 결과를 세 자리 숫자로 표현합니다. 첫 번째 자리는 응답의 분류를 나타냅니다: 1xx는 정보, 2xx는 성공, 3xx는 리다이렉션, 4xx는 클라이언트 오류, 5xx는 서버 오류입니다. 이 코드 체계는 HTTP/1.0(RFC 1945, 1996)에서 도입되어 현재 HTTP/2, HTTP/3까지 이어집니다.

실무에서 가장 자주 마주치는 코드는 200(OK), 201(Created), 301(Moved Permanently), 302(Found), 400(Bad Request), 401(Unauthorized), 403(Forbidden), 404(Not Found), 500(Internal Server Error)입니다. 특히 401과 403의 차이—인증 실패 vs 인가 거부—나 301과 302의 차이—영구 vs 임시 리다이렉트—는 API 설계와 SEO에 직접 영향을 줍니다.

이 도구는 1xx~5xx의 표준 HTTP 상태 코드 전체를 카테고리 탭으로 탐색하고, 코드 번호나 이름으로 즉시 검색할 수 있습니다. 코드 번호를 클릭하면 클립보드에 복사됩니다. REST API 설계, 서버 디버깅, 웹 개발 학습에 빠른 레퍼런스로 활용하세요.

주요 사용 사례
  • 낯선 HTTP 상태 코드의 정확한 의미 조회
  • REST API 설계 시 올바른 상태 코드 선택
  • 서버나 서드파티 API의 HTTP 오류 디버깅
  • 리다이렉트 코드 올바른 사용 확인 (301 vs 302 vs 307 vs 308)
  • 인증 오류 구분 (401 vs 403)
자주 묻는 질문
Q. 401과 403의 차이는 무엇인가요?
401 Unauthorized는 '인증(Authentication)이 필요하거나 실패했다'는 의미입니다. 아직 누구인지 모른다는 뜻입니다. 403 Forbidden은 '인증은 됐지만 이 리소스에 접근할 권한이 없다(Authorization 실패)'는 의미입니다. 이미 누구인지는 알지만 허락하지 않는 것입니다.
Q. 301과 302 리다이렉트의 차이는?
301 Moved Permanently는 영구 이동을 의미하며 검색엔진이 링크 주스를 새 URL로 옮깁니다. 302 Found는 임시 이동으로 검색엔진은 원본 URL을 계속 인덱싱합니다. 307과 308은 각각 302, 301과 같지만 리다이렉트 시 HTTP 메서드를 변경하지 않습니다.
Q. 418 I'm a Teapot은 실제로 사용되나요?
RFC 2324 만우절 농담으로 만들어진 코드지만, IANA 레지스트리에 등록되어 있습니다. 실제 API에서 커피 관련 엔드포인트에 장난처럼 쓰이거나, 특정 요청을 거부할 때 유머로 사용되기도 합니다. 공식 스펙상 실제 서비스에 사용하도록 권장되지는 않습니다.
// related tools
Cron 표현식 생성기
Cron 표현식을 시각적으로 만들고 파싱합니다. 사람이 읽기 쉬운 설명과 다음 실행 시간을 미리 확인할 수 있습니다.
jwt
JWT 디코더
JWT 토큰을 디코딩하고 분석합니다. 헤더, 페이로드, 서명을 확인할 수 있습니다.
rx
정규식 테스터
정규식을 실시간으로 테스트합니다. 매칭 하이라이트와 설명을 제공합니다.
색상 변환기
HEX, RGB, HSL 등 다양한 형식으로 색상을 변환합니다.