โ Success
| Code | Meaning | Description |
| 200 OK | Success | The request was successful. |
| 201 Created | Resource Created | A new resource has been successfully created. |
| 202 Accepted | Request Accepted | The request has been received but not yet processed |
| 204 No Content | No Content | The request was successful, but there is no content to return. |
๐ Redirection
| Code | Meaning | Description |
| 301 Moved Permanently | Permanent Redirect | The resource has moved to a new URL permanently. |
| 302 Found | Temporary Redirect | The resource is temporarily located at a different URI. |
| 304 Not Modified | Not Modified | The resource has not changed since the last request. |
๐ซ Client Side Errors
| Code | Meaning | Description |
| 400 Bad Request | Malformed Request | The server could not understand the request due to invalid syntax. |
| 401 Unauthorized | Authentication Required | The request lacks valid authentication credentials |
| 403 Forbidden | Access Denied | The server understood the request but refuses to authorize it |
| 404 Not Found | Resource Missing | The server cannot find the requested resource |
| 405 Method Not Allowed | Method Disallowed | The HTTP method is not allowed for the requested resource |
| 408 Request Timeout | Timeout | The server timed out waiting for the request |
๐ฅ Server Side Errors
| Code | Meaning | Description |
| 500 Internal Server Error | Server Error | The server encountered an unexpected condition |
| 501 Not Implemented | Not Supported | The server does not support the functionality required |
| 502 Bad Gateway | Invalid Gateway | The server received an invalid response from an upstream server. |
| 503 Service Unavailable | Temporarily Overloaded | The server is currently unavailable |
| 504 Gateway Timeout | Upstream Timeout | The server did not receive a timely response from an upstream server. |