HTTP 상태 코드 조회
모든 HTTP 상태 코드(1xx ~ 5xx)를 조회합니다——평문 영어 설명 포함.
- 100Continue
Server received the request headers; client should send the body.
- 101Switching Protocols
The server is switching protocols as requested by the client.
- 102Processing
Request received but not yet processed (WebDAV).
- 103Early Hints
Used to return some response headers before final HTTP message.
- 200OK
Standard success response.
- 201Created
Request succeeded and a new resource was created.
- 202Accepted
Request accepted for processing but not completed.
- 203Non-Authoritative Information
Returned metadata is from a third-party copy.
- 204No Content
Request succeeded but no content is returned.
- 205Reset Content
Request succeeded; client should reset the document view.
- 206Partial Content
Range request succeeded; partial content returned.
- 207Multi-Status
Body contains multiple statuses (WebDAV).
- 208Already Reported
Members of a DAV binding already enumerated.
- 226IM Used
Server fulfilled a GET request and the response is the result of one or more instance-manipulations.
- 300Multiple Choices
Request has more than one possible response.
- 301Moved Permanently
Resource moved to a new permanent URL.
- 302Found
Resource is temporarily at a different URL.
- 303See Other
Client should follow the response to a new URL with GET.
- 304Not Modified
Cached version is still valid; no body returned.
- 307Temporary Redirect
Same method should be used at the new URL.
- 308Permanent Redirect
Same as 301 but the request method must not change.
- 400Bad Request
Server cannot or will not process due to a client error.
- 401Unauthorized
Authentication required and has failed or not been provided.
- 402Payment Required
Reserved for future use, sometimes used for paywalls.
- 403Forbidden
Server understood but refuses to authorize.
- 404Not Found
The requested resource could not be found.
- 405Method Not Allowed
Request method is known but not supported by the resource.
- 406Not Acceptable
Resource cannot produce content matching the Accept headers.
- 407Proxy Authentication Required
Client must authenticate with the proxy.
- 408Request Timeout
Server timed out waiting for the request.
- 409Conflict
Request conflicts with the current state of the resource.
- 410Gone
Resource is no longer available and will not be available again.
- 411Length Required
Content-Length header is required.
- 412Precondition Failed
A precondition in the request headers was not met.
- 413Payload Too Large
Request entity is larger than the server is willing to process.
- 414URI Too Long
URI is longer than the server is willing to interpret.
- 415Unsupported Media Type
Media format of the request is not supported.
- 416Range Not Satisfiable
Requested range cannot be served.
- 417Expectation Failed
Expectation in Expect header could not be met.
- 418I'm a teapot
Server refuses to brew coffee because it is, permanently, a teapot.
- 421Misdirected Request
Request was directed to a server unable to produce a response.
- 422Unprocessable Entity
Request was well-formed but had semantic errors.
- 423Locked
Resource is locked (WebDAV).
- 424Failed Dependency
Request failed because of a previous failed request (WebDAV).
- 425Too Early
Server unwilling to risk processing a replay-vulnerable request.
- 426Upgrade Required
Client must upgrade to a different protocol.
- 428Precondition Required
Server requires the request to be conditional.
- 429Too Many Requests
Client has sent too many requests in a given amount of time.
- 431Request Header Fields Too Large
Headers are too large for the server to process.
- 451Unavailable For Legal Reasons
Resource cannot be served for legal reasons.
- 500Internal Server Error
Generic server error response.
- 501Not Implemented
Server does not support the request method.
- 502Bad Gateway
Server received an invalid response from an upstream server.
- 503Service Unavailable
Server is overloaded or down for maintenance.
- 504Gateway Timeout
Upstream server did not respond in time.
- 505HTTP Version Not Supported
HTTP version in the request is not supported.
- 506Variant Also Negotiates
Internal configuration error in transparent content negotiation.
- 507Insufficient Storage
Server is unable to store the representation (WebDAV).
- 508Loop Detected
Server detected an infinite loop while processing (WebDAV).
- 510Not Extended
Further extensions to the request are required.
- 511Network Authentication Required
Client needs to authenticate to gain network access.
RFC 9110 및 IANA HTTP 상태 레지스트리에서 제공됩니다.
HTTP 상태 코드 조회 소개
Handytool의 HTTP 상태 코드 조회는 100 Continue에서 511 Network Authentication Required까지의 모든 HTTP 상태에 대한 빠른 참조입니다. 코드(404), 이름(Not Found), 설명 조각으로 검색합니다. 클래스별로 필터링합니다(1xx 정보, 2xx 성공, 3xx 리다이렉트, 4xx 클라이언트 오류, 5xx 서버 오류). RFC 9110 및 IANA HTTP 상태 레지스트리에서 소싱되었으며, 실제 API 응답에서 볼 수 있는 WebDAV 및 기타 확장 포함합니다.
HTTP 상태 코드 조회 기능
- 01
코드 또는 의미로 검색
코드, 이름 또는 설명 문구를 입력합니다——목록이 즉시 필터링됩니다. 422가 "어떤 의미론적" 을 의미한다는 것은 기억하지만 정확한 이름을 잊었을 때 유용합니다.
- 02
클래스 필터
목록을 단일 클래스로 좁힙니다——클라이언트 오류를 디버그할 때는 4xx, 서버 버그를 추적할 때는 5xx, 리다이렉트 체인을 풀 때는 3xx.
- 03
평문 영어 설명
각 항목에는 개발자용 한 문장 요약이 있습니다——공식 RFC 표현이 아니라 실제로 코드가 실무에서 의미하는 바.
HTTP 상태 코드 조회 자주 묻는 질문
- 401과 403의 차이는 무엇입니까?
- 401 Unauthorized는 요청에 유효한 인증이 없음을 의미합니다——로그인하고 재시도합니다. 403 Forbidden은 인증되었지만 리소스에 액세스할 수 없음을 의미합니다——자격증명이 도움이 되지 않습니다.
- 422 vs 400을 언제 반환해야 합니까?
- 400 Bad Request는 형식이 잘못된 구문(손상된 JSON, 필수 필드 누락)용입니다. 422 Unprocessable Entity는 구문적으로 유효하지만 비즈니스 검증이 실패한 요청(이메일 존재, 나이 ≥ 18)용입니다.
- 418 I'm a teapot은 실제 상태 코드입니까?
- 예——RFC 2324(1998)에서 에이프릴 푸스 농담으로 정의되어 RFC 7168에서 재확인됩니다. HTTP 자체에서 사용되지 않지만 IANA 레지스트리에 표시되고 소수의 서비스에서 이스터 에그로 반환합니다.
- 511 이상의 5xx 코드 이후는 어떻게 됩니까?
- IANA 레지스트리의 511 이상 코드는 할당되지 않습니다. 특정 플랫폼에서 사용자 정의 5xx 코드가 표시될 수 있습니다(Cloudflare는 업스트림 문제에 520-527 사용), 하지만 이는 공급업체별 확장이며 표준 HTTP가 아닙니다.
관련 도구
개발자 →다른 도구 둘러보기
모든 도구 →- 사용 가능
PDF를 JPG로
브라우저에서 직접 PDF의 각 페이지를 선명한 JPG, PNG 또는 WebP 이미지로 변환합니다. 업로드 없음, 품질 손실 없음.
PDF무료로컬에서 실행열기 - 사용 가능
배경 제거
브라우저 내 AI 모델을 사용하여 사진 배경을 지우고 투명한 PNG 획득 — 업로드 불필요, 이미지는 기기에 유지됨.
이미지무료로컬에서 실행열기 - 사용 가능
동영상 자르기
프레임 단위 정확도로 동영상의 앞이나 뒤를 자릅니다.
동영상무료열기 - 사용 가능
오디오 자르기
오디오 파일에서 일부 구간을 잘라냅니다.
오디오무료로컬에서 실행열기 - 사용 가능
Markdown을 HTML로
Markdown을 HTML로 브라우저에서 직접 변환합니다.
문서무료로컬에서 실행열기