---
title: "HTTP Response Standards"
slug: "http-response-standards"
updated: 2025-07-04T17:20:20Z
published: 2025-07-04T17:20:20Z
canonical: "developers.cmicglobal.com/http-response-standards"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://developers.cmicglobal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# HTTP Response Standards

### Successful responses (200 – 299)

          200 OK

          

The request succeeded. The result meaning of "success" depends on the HTTP method:

GET: The resource has been fetched and transmitted in the message body. HEAD: The representation headers are included in the response without any message body. PUT or POST: The resource describing the result of the action is transmitted in the message body. TRACE: The message body contains the request message as received by the server.

          201 Created

          

The request succeeded, and a new resource was created as a result. This is typically the response sent after POST requests, or some PUT requests.

          204 No Content

          

There is no content to send for this request, but the headers may be useful. The user agent may update its cached headers for this resource with the new ones.

### Client error responses (400-499)

          400 Bad Request

          

The server cannot or will not process the request due to something that is perceived to be a client error (e.g., payload incorrect, invalid request message framing, or deceptive request routing).

          401 Unauthorized

          

Although the HTTP standard specifies "unauthorized", semantically this response means "unauthenticated". That is, the client must authenticate itself to get the requested response.

          404 Not Found

          

The server cannot find the requested resource. In the browser, this means the URL is not recognized. In an API, this can also mean that the endpoint is valid but the resource itself does not exist. Servers may also send this response instead of 403 Forbidden to hide the existence of a resource from an unauthorized client. This response code is probably the most well known due to its frequent occurrence on the web.

          406 Not Acceptable

          

This response is sent when the web server, after performing server-driven content negotiation, doesn't find any content that conforms to the criteria given by the user agent.

          412 Precondition Failed

          

The client has indicated preconditions in its headers which the server does not meet.

          415 Unsupported Media Type

          

The media format of the requested data is not supported by the server, so the server is rejecting the request.

          429 Too Many Requests

          

The user has sent too many requests in a given amount of time ("rate limiting").

          431 Request Header Fields Too Large

          

The server is unwilling to process the request because its header fields are too large. The request may be resubmitted after reducing the size of the request header fields.

### Server error responses (500-599)

          500 Internal Server Error

          

The server has encountered a situation it does not know how to handle.

          502 Bad Gateway

          

This error response means that the server, while working as a gateway to get a response needed to handle the request, got an invalid response.

          503 Service Unavailable

          

The server is not ready to handle the request. Common causes are a **server that is down** for maintenance or that is **overloaded**.

          504 Gateway Timeout

          

This error response is given when the server is acting as a gateway and cannot get a response in time.

          505 HTTP Version Not Supported

          

The HTTP version used in the request is not supported by the server.

          511 Network Authentication Required

          

Indicates that the client needs to authenticate to gain network access.
