Server Response Time Codes Guide  

Let’s say you want to buy a pair of sneakers to use while strolling around the mall. Instead of visiting a physical store, you decided to buy the shoe from the brand’s site, for example. All you need to do is type the brand name into the search bar and click the enter button. Congratulations, thousands of shoes are waiting for you to buy! Do you know what’s happening in the background while you effortlessly surf the internet? Each time you visit a website, you actually create a communication between the browser you use and a web server. The browser sends a request to the webserver to display what you expect. And in return, the server responds to it. At this point, the server sends a message to the client with a series of response codes to indicate the request’s status. So what is this response code?

In today’s comprehensive guide, we’ll first answer the question, “What are status codes in the HTTP world?”. Then, we’ll dive into the codes and examine them in 5 distinct categories. In the end, we’ll share six perfect tricks that can improve the speed at which the server responds, leading to a better experience for your website visitors. Are you ready? Let’s dive in! 

HTTP status codes

What Are HTTP Status Codes? 

HTTP status codes are the server’s reply to a request made by a browser (also known as ‘the client’). When you access a website, your browser sends a request to the server, and the server provides a three-digit code. This is what HTTP status codes are. Each code consists of 3 numerical digits and is primarily in use to signal the success or failure of a request sent by the client. 

HTTP status codes are in five separate groups based on the first digit of the code.  

  • 1xx – Informational Response Status Codes: This code signifies that the server has received the request and is currently undergoing processing.  
  • 2xx – Succesful Status Codes: This code represents a successful receipt, acceptance, and comprehension of the request.  
  • 3xx – Redirection Status Codes: This code means additional steps are necessary to complete the request successfully.  
  • 4xx – Client Error Status Codes: This code indicates a problem with the request, resulting in it not being fulfilled.  
  • 5xx – Server Error Status Codes: This code shows that the server was unable to fulfill the request due to a server-side issue. 

Each class contains a variety of server codes that may be returning from the server, ranging from 00 to 99. These codes have specific and distinct meanings. So, let’s start introducing you to the most received status code! 

Learn more with the HTTP request guide!

100 status codes

100 Status Codes 

HTTP status codes starting with 1xx indicate that the client’s request is still in process. A 100-level status code provides additional information to inform you of the current situation of the request. 

  • 100 – Continue: Signifies that the server has received the first part of the request and has not yet rejected it. 
  • 101 – Switching Protocols: This signifies that the request has an Upgrade header. This indicates that the server is in the process of switching to a different protocol. 
  • 102 – Processing: This signifies that the server has gathered the entire request from the client and has not yet completed it. 

What Should You Do When You Encounter a 1xx Response Code?

1xx response codes refers to an informational response from the server. That means the request was taken and is still in the process. These 1xx response codes occur when there is a certain scenario happens between the user and server. If you happen to come across 1xx response codes, do not hesitate to do these things:

  • Continue (100): That means the first part of the request is taken, and you can continue with the request.
  • Switching Protocols (101): If you see this code, that means the server you are on is accepted to switch the application protocol. If you are currently working on a certain server, you will need to search for a solution about how to proceed with the expectations of your server. However, unless you are working on a certain server as a developer, the HTTP client library takes care of these codes by itself often, so even though you don’t specifically need to deal with the 1xx response codes, it is still necessary for you to know what to do when you encounter 1xx response codes.
200 status codes

200 Status Codes  

The optimal outcome is receiving an HTTP status code within the 200 range. This indicates that all functions are operating correctly. In this group, 200 and 201 codes are the most common status codes. 

  • 200 – Ok: Signifies that the request sent by the server was successful. 
  • 201 – Created: Signifies that the server has finished handling the request and has created one or more new resources. 
  • 202 – Accepted: Signifies that the request has been accepted for processing but has not been completed yet.  
  • 203 – Non-Authoritative Information: This signifies that the HTTP request was successful, but a change has been made by using a proxy. 
  • 204 – No content: This signifies that the server has successfully completed the request, and there is no further information to be included in the response. 
  • 205 – Reset Content: This signifies that the server has satisfied the request and instructs the browser to reset the document. 

What Should You Do When You Encounter a 2xx Response Code?

If you encountered a 2xx response code, that means your request was successfully taken and completely accepted. You often get these codes when the server you are working on, or another server has completed its process without any error. If you come across a 2xx response code, these are what you need to do to deal with 2xx response codes:

  • 200 OK: This is a common response you get when your request is taken without any error. You might get different responses depending on the request procedure.
  • 201 Created: This code means that the request is performed, and also a new source is being created in the process. The server should have details about new resources in return.
  • 204 No Content: The process of request was successful in a certain server, but unable to send the content in return. This is used if a new resource doesn’t get any response.

Keep in mind the fact that 2xx response codes usually mean that the request you directly sent resulted in a success, and you can continue to the next stage without hesitation.

300 status codes

300 Status Codes 

Getting a status code starting with 3 is a method to notify that a resource has been relocated to a new resource URL or location. The response code received by the client could be moved to a temporal or permanent location. 

  • 301 – Moved Permanently: This signifies that the requested resource has permanently moved to a new URL. 
  • 302 – Found: This signifies that the resource request has been moved temporarily to a new URL. 
  • 303 – See Other: Instructs the client (browser) to request a different URL as indicated in the Location header of the response. 
  • 304 – Not Modified: This signifies that the website/web page being requested has not been updated since the last time it was accessed.  
  • 305 – Use Proxy: This signifies that the requested resource can only be accessed using a proxy. 
  • 307 – Temporary Redirect: Specifies that the target resource temporarily moves to a different URL. 
  • 308 – Permanent Redirect: This specifies that the target resource has been given a permanent new URL. 

What Should You Do When You Encounter a 3xx Response Code?

If you encounter a 3xx response code, that means you need to take extra action in order to complete the request. If you do not know what to do when you come across 3xx response codes, here’s what you need to do:

  • 300 Multiple Choices: The user can complete the requested resource with multiple choices that are offered to him or her.
  • 301 Moved Permanently: The requested source’s location has changed, and it needs to be updated.
  • 302 Found: Same as 301, but 302 requires a temporary location. After that, the user needs to change the location of the resource to its original one.
  • 303 See Other: The server is switching to another URI, and it needs to be issued with a new URI. In order to deal with 3xx response codes, you need to take precautions based on the code’s requirements for processing successfully.
400 status codes

400 Status Codes  

400-level status codes indicate an issue with the request and/or the browser. Not that when a client tries to access a resource that doesn’t exist, it results in the well-known 404 error response code. 

  • 400 – Bad Request: This signifies that the server is unable to handle the request due to an error made by the client. 
  • 401 – Unauthorized: This signifies that the request has been denied due to the client providing invalid authentication credentials for the requested resource. 
  • 402 – Payment Required: This signifies that payment must be made before accessing the requested resource.  
  • 403 – Forbidden: This signifies that the client lacks the necessary permission to access the content. 
  • 404 – Not Found: This signifies that the server cannot find a matching resource for the request pointing to a URL. 
  • 405 – Method Not Allowed: This signifies that the request method utilized is not permitted on the target resource. For example, if the client issues a PUT request on a resource that enables only a GET request, a 405 status code will be received. 
  • 406 – Not Acceptable: This specifies that the requested resource is unable to generate content that meets the criteria set by the request’s content negotiation headers. 
  • 407 – Proxy Authentication Required: This specifies that Authentication is necessary to use a proxy. 
  • 408 – Request Timeouts: This specifies that the server timed out while waiting for the client to send a complete request message.  
  • 409 – Conflict: This specifies that the request could not be fulfilled because of the conflict with the current state of the target resource. 
  • 410 – Gone: This specifies that the origin server can no longer provide access to the requested resource, which is expected to remain permanent. 
  • 411 Lenght Required: The request needs the length of the content
  • 412 Precondition Failed: The requester has failed to execute the preconditions of the request.
  • 413 Payload Too Large: The server is unable to process the requested source because the request is too large.
  • 414 URI Too Long: The server is unable to process because the URI is too long.
  • 415 Unsupported Media Type: The server does not support a certain media type.
  • 416 Range Not Satisfiable: The server cannot provide the requested file.
  • 417 Expectation Failed: The server is not eligible to meet the requirements of the request.
  • 418 I’m a teapot: This is an unofficial code that occurs in RFC 2324 as one of the ‘’IETF April Fools’ jokes’’.
  • 421 Misdirect Request: The request was directed to the wrong server, which cannot provide any response.
  • 422 Unprocessable Content: There is nothing wrong with the request, but it cannot be processed.
  • 423 Locked (WebDAV; RFC 4918): The access to the resource is locked.
  • 424 Failed Dependency (WebDAV; RFC 4918): The request failed because another request had failed.
  • 425 Too Early (RFC 8470): The server is not accepting to process a request due to the possible replay.
  • 426 Upgrade Required: The client has to switch to the protocol named TLS/1.3.
  • 428 Precondition Required (RFC 6585): The main server needs a precondition to execute the request.
  • 429 Too Many Requests (RFC 6585): At a certain time, a lot of requests had been made.
  • 431 Request Header Fields Too Large (RFC 6585): The server is denying processing the request due to the length of header fields or only just one header field being huge.
  • 451 Unavailable For Legal Reasons (RFC 7725): A server has been denied access to a resource due to legal actions.

What Should You Do When You Encounter a 4xx Response Code?

If you come across a 4xx response code, that means there is an error occurred on the user’s side. If you encounter 4xx response codes, here’s what you need to do:

  • 400 Bad Request: That means the server is unable to process the request. The request needs missing parameters.
  • 401 Unauthorized: The request needs user authentication. The user needs proof in order to access the resource.
  • 404 Not Found: This is a commonly requested source that is unable to be found on the server. It is associated with the error of the URL path.

In order to deal with 4xx response codes, you need to approach the codes based on their fulfillment requirements.

500 status response code

500 Status Codes 

The status codes starting with 5 also indicate a problem. However, the source of the problem lies on the server side, making it harder to fix compared to client-side errors. 

  • 500 – Internal Server Error: This signifies that the server has encountered an unexpected issue that prevents it from fulfilling the request. 
  • 501 – Not Implemented: This signifies that the required functionality needed to complete the request is not supported and cannot be handled by the server. 
  • 503 – Service Unavailable: This signifies that the server is unavailable or unable to respond to requests; This could be temporary or permanent. Learn how to fix HTTP 503 error here.
  • 504 – Gateway Timeout: This signifies that the gateway or the proxy server failed to receive a timely response from the upstream server required to fulfill the request. 
  • 505 – HTTP Version Not Supported: This signifies that the server doesn’t support the version of HTTP used by the client to make the request. 

What Should You Do When You Encounter a 5xx Response Code?

If you see a 5xx response code, that means the error occurred on the server side. Simply put, 5xx response codes refer to the errors that occurred in the server, and it is unable to execute the request. In order to deal with 5xx response codes, you need to identify the error code just like the other code types we talked about previously. Since 5xx response codes generally serve errors, the solution can be applied to most of the codes.

RECENT POSTS
What is Interaction to Next Paint (INP) & How to Optimize It?
What is Interaction to Next Paint (INP) & How to Optimize It?

Google recently changed the balance by introducing a metric called next-paint engagement (INP) to track page experience. INP stands out as an empirica...

H1 Tag Missing Or Empty Warning
H1 Tag Missing Or Empty Warning

The digital world has wonders, however, it is not perfect. Sometimes there can be problems. In this world where algorithms waltz and crawlers choreogr...

The first thing you need to do is verify the server status page, meaning that you need to make adjustments from the administrators. The second thing you should do is make sure the external services are working properly. Last but not least, you should check the server logs in order to understand the problem.

The Importance of Response Codes for SEO

The first reason why response codes are crucial for SEO is page accessibility. Response codes can provide you an information about the website page’s accessibility. The second reason is the SEO-Friendly redirection. Redirecting a certain URL to another one is necessary if you want to take advantage of 3xx codes’ usage. In addition, if you can use status codes correspondingly, they can show you the duplicate content issues. If several URLs are redirecting to the same content, they can be seen as duplicates in search engines.

Which Response Codes Are Critical for SEO?

The code 200 is critical because the response is successful and is important for SEO due to the fact that the requested page can easily be found. The second one is the code 301. If the content is transferred to a new location, code 301 sends information about this change to the search engine in order to update the index. It is important to save the SEO ranking and send it to the new one. Last but not least is the popular code: 404 Not Found. The code 404 is important because if the page cannot be transferred to another one, that can affect the user experience adversely. Therefore, it is important to switch to the new web page URL if the previous one has somehow ceased to exist in order to abstain from making users disappointed.

how to improve server response time

How to Improve Server Response Time

Improving server response time should be your top priority as a website owner. You may be wondering why. It is true that if the website takes too long to load, it causes visitors to leave the web page immediately. It means that your potential visitors never come back to you and navigate away to your strong competitors’ websites. So, it’s clear that response time significantly affects your user experience (UX) and search engine optimization (SEO) strategies. Learn more about HTTP and SEO.

Note that:

  • One in 4 visitors leaves a website that takes more than 4 seconds to load. 
  • A 1-second delay reduces visitor satisfaction by 16% and a conversion rate by 4,45%. 
  • Pages loaded in 2 seconds have a one-page visit rate of 9%, while these loaded in 5 seconds have a one-page visit rate of 38%. 

Once you’ve understood the importance of a fast server response time, it’s time to look at ways to reduce it quickly! 

improving response code tips

Tips

  • Select a Powerful And High-Performance Server: First things first. Having consistent and quick server response times can be possible by investing in a powerful, reliable, high-performance web server. 
  • Optimize Your Database: In the early days of a website launch, the database can respond quickly to queries. However, as more data accumulates over time, the database becomes cluttered with information. Therefore, you should optimize your queries to return only the necessary information. So, implement relevant and suitable indexes and organize your database schema. 
  • Optimize Your Website Files: If your website contains unoptimized codes, the web pages will take longer to load and process HTTP requests. Optimizing the file size will quicken the web page’s loading time. 
  • Set up Caching: Without caching, a browser sends requests to the server whenever a page is in load instead of retrieving them from a local or temporary cache. So, configuring caching allows you to speed up the response time of web pages for visitors. 
  • Use a CDN: Content Delivery Network, or CDN for short, refers to a network of servers spread worldwide with local copies of data stored to facilitate faster content downloads. Once a CDN is in use, multiple proxy servers will maintain copies of your web content. If the primary server is distant from an international user, the cached data will allow them to access your site fastly. This improves the content delivery speed.  
  • Detect 404 Errors and Eliminate The Errors: Web visitors receive 404 errors when they request a no longer available page. This situation creates a negative experience. Moreover, these requests still consume your web server’s space and resources, causing the server to be overwhelmed.  

Conclusion

Requests and responses are at the heart of the HTTP world. A browser, or a client, sends a request to a web server, and the server immediately receives it to process. After this process, the server sends an appropriate response. At this point, one or more status codes may be sent to the client. This is precisely what a response code is, which indicates what is going on during the process. By looking at the response code, it is possible to understand whether or not the request is currently working. If you receive the codes starting with 4 or 5, try to fix it without a moment to spare! 

Frequently Asked Questions About

As its very name signifies, server response time is the time elapsed from when a person clicks on a link to access your web page and when your server begins to send back the page content to the visitor. A faster website/web page will provide a better visitor experience.

The most common status codes are 100 – Continue, 200 – Ok, 400 – Bad Request, 404 – Not Found, and 500 – Internal Server Error.

Although they may seem very similar initially, they are entirely different. 400 indicates that the server was unable to process the request due to an error. While 404 means that the server could not find the corresponding resource for the request.

Status codes are a sign that the website is in view successfully. This helps you improve organic search traffic. So, the answer is definitely “YES!”

A server response code is the indicator of the status of a web page.

Because they are important for information transfer between the users and the website’s servers.

Fatih Kısa

Posts: 2

CEO of Jengal Software, which produces worldwide digital solutions for businesses, founded the Dopinger and Ixiry brands. Working with a dynamic team to provide for our customers' software, SEO, and digital marketing needs.

RECENT POSTS
2 Comments on Server Response Time Codes Guide  

Your email address will not be published. Required fields are marked *

(Total: 29 Average: 5 )

2 Comments

  1. Emmet H.
    Emmet H.

    Great breakdown of server response codes! Understanding the difference between 4xx and 5xx errors in detail has clarified a lot for me. This guide will be a go-to resource for troubleshooting in the future. Thanks for the clarity!

  2. Jefferson G.
    Jefferson G.

    This article was a lifesaver! I was struggling with recurrent 503 errors and the solutions provided here were spot on. It’s so important to know what these codes mean for better website management. Keep up the great work!