Lewati ke konten utama
menjadi.dev
Dasar Web

Status Code HTTP

Kode numerik yang menunjukkan hasil dari HTTP request (sukses, error, redirect).

Status code adalah kode numerik 3-digit yang server kirim dalam response HTTP untuk menunjukkan hasil request. Kategori: 1xx Informational (100 Continue), 2xx Success (200 OK, 201 Created, 204 No Content), 3xx Redirection (301 Moved Permanently, 302 Found, 304 Not Modified), 4xx Client Error (400 Bad Request, 401 Unauthorized, 403 Forbidden, 404 Not Found, 422 Unprocessable Entity), 5xx Server Error (500 Internal Server Error, 502 Bad Gateway, 503 Service Unavailable). Status code membantu client menangani response dengan tepat — misalnya retry untuk 5xx, redirect untuk 3xx, tampilkan error message untuk 4xx.

Istilah Terkait