The best HTTP Status Codes available online. Lightning-fast, privacy-first, and developer-friendly.
100% free, no signup required. Works entirely in your browser.
Open HTTP Status CodesEnter a status code or keyword.
Matching codes are displayed.
Read detailed descriptions and use cases.
HTTP status codes are grouped into five classes: 1xx Informational (request received, processing), 2xx Success (request accepted and processed), 3xx Redirection (further action needed), 4xx Client Error (bad request or unauthorized), and 5xx Server Error (server failed to fulfill a valid request). Understanding these classes helps quickly categorize API responses during debugging.
200 OK is the standard success response indicating that the request was received, understood, and processed successfully. It is the most common status code you will encounter when everything works correctly. The response body typically contains the requested resource data. Different HTTP methods return different content — GET returns data, POST returns the created resource.
404 Not Found indicates that the server cannot find the requested resource at the specified URL. This could mean the URL is incorrect, the resource has been deleted, or the route does not exist. It is one of the most well-known HTTP status codes and is different from 410 Gone, which explicitly indicates a permanently removed resource.