HTTP Status Code Reference
Look up common HTTP status codes and their meanings
| Code | Message | Description |
|---|---|---|
| 200 | OK | The request has succeeded. |
| 201 | Created | The request has been fulfilled and resulted in a new resource being created. |
| 204 | No Content | The server successfully processed the request, but is not returning any content. |
| 400 | Bad Request | The server cannot or will not process the request due to something that is perceived to be a client error. |
| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |
| 403 | Forbidden | The server understood the request but refuses to authorize it. |
| 404 | Not Found | The server can't find the requested resource. |
| 500 | Internal Server Error | The server has encountered a situation it doesn't know how to handle. |
| 502 | Bad Gateway | The server, while acting as a gateway or proxy, received an invalid response from the upstream server. |
| 503 | Service Unavailable | The server is not ready to handle the request. |