HTTP 상태 코드

가장 흔한 HTTP 응답 코드를 짧은 설명과 함께 참고하세요. 요청 디버깅, API 문서화, 서버 응답 검토에 유용합니다.

Use the jump links to move between response classes and keep a quick lookup nearby while working with APIs.

HTTP response code table

Code Name Meaning

1xx Informational

Informational responses indicate that the request was received and processing can continue.

2xx Success

Success responses indicate the request was received, understood and accepted.

3xx Redirection

Redirection responses tell the client that additional action is needed to complete the request.

4xx Client Errors

Client error responses indicate a problem with the request itself, authentication or permissions.

5xx Server Errors

Server error responses indicate the server failed while trying to handle an apparently valid request.

예시

200 OK
404 Not Found
503 Service Unavailable

자주 묻는 질문

HTTP 404란 무엇인가요?

HTTP 404는 요청한 리소스를 해당 URL에서 찾을 수 없다는 뜻입니다.

301과 302의 차이는 무엇인가요?

301 리다이렉트는 영구적인 이동을, 302는 보통 일시적인 이동을 의미합니다.

503은 무엇을 의미하나요?

HTTP 503은 서비스가 일시적으로 사용할 수 없는 상태임을 의미하며, 주로 점검이나 과부하 때문에 발생합니다.