πŸ› οΈ Developer Tools
Β· 3 min read

HTTP Status Code Reference


Search or browse all HTTP status codes.

Quick Reference

RangeCategoryMeaning
1xxInformationalRequest received, continuing
2xxSuccessRequest accepted and processed
3xxRedirectionFurther action needed
4xxClient ErrorBad request from client
5xxServer ErrorServer failed to fulfill request

Most Common in APIs

  • 200 β€” Success
  • 201 β€” Created (after POST)
  • 204 β€” No Content (after DELETE)
  • 400 β€” Bad Request (validation error)
  • 401 β€” Unauthorized (not logged in)
  • 403 β€” Forbidden (no permission)
  • 404 β€” Not Found
  • 422 β€” Validation Error
  • 429 β€” Rate Limited
  • 500 β€” Server Error