{"id":8011,"date":"2025-05-13T10:00:32","date_gmt":"2025-05-13T04:30:32","guid":{"rendered":"https:\/\/www.notiontechnologies.com\/blog\/?p=8011"},"modified":"2025-06-19T15:01:25","modified_gmt":"2025-06-19T09:31:25","slug":"understanding-1xx-informational-status-codes","status":"publish","type":"post","link":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/","title":{"rendered":"Understanding 1xx Informational Status Codes"},"content":{"rendered":"\n<p><strong>Introduction to 1xx Informational Status Codes<\/strong>&#8211; When a browser talks to a server, the server sends <strong>HTTP status codes<\/strong>. These codes tell the browser what\u2019s happening. <strong>1xx status codes<\/strong> are <strong>informational responses<\/strong>. They show that the server got the request and is still processing it.<\/p>\n\n\n\n<p>These codes are not errors. Instead, they give updates before the final response. They are part of <strong>HTTP\/1.1<\/strong> and later versions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Are 1xx Status Codes Important?<\/h2>\n\n\n\n<p><strong>1xx informational status codes<\/strong> help in smooth communication. They let the client (browser) know the server is working. Without them, the browser might think the server is stuck.<\/p>\n\n\n\n<p>These codes are rare in everyday browsing. But they are useful in <strong>advanced web applications<\/strong> and <strong>API communications<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Common 1xx Status Codes<\/h2>\n\n\n\n<p>Here are the most common <strong>1xx HTTP status codes<\/strong>:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. 100 Continue<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The server confirms it received the request headers.<\/li>\n\n\n\n<li>The client can now send the request body.<\/li>\n\n\n\n<li>Used in large file uploads to check if the server accepts the request.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. 101 Switching Protocols<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The server agrees to change protocols (e.g., from HTTP to WebSocket).<\/li>\n\n\n\n<li>Common in <strong>real-time applications<\/strong> like chat systems.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3. 102 Processing (WebDAV)<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The server is still processing the request.<\/li>\n\n\n\n<li>Prevents timeouts for long-running operations.<\/li>\n\n\n\n<li>Used in <strong>WebDAV (Web Distributed Authoring and Versioning)<\/strong>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">4. 103 Early Hints<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The server sends some headers before the full response.<\/li>\n\n\n\n<li>Helps browsers start loading resources early.<\/li>\n\n\n\n<li>Improves <strong>website performance<\/strong>.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How 1xx Status Codes Work<\/h2>\n\n\n\n<p>When a client sends a request, the server may reply with a <strong>1xx code<\/strong> first. For example:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>The browser sends a request to upload a big file.<\/li>\n\n\n\n<li>The server responds with <strong>100 Continue<\/strong>.<\/li>\n\n\n\n<li>The browser then sends the file data.<\/li>\n<\/ol>\n\n\n\n<p>Without <strong>100 Continue<\/strong>, the browser would send the whole file at once. This could waste bandwidth if the server rejects the request.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">When Are 1xx Codes Used?<\/h2>\n\n\n\n<p>Most websites don\u2019t show <strong>1xx codes<\/strong> to users. But they are used in:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Large file transfers<\/strong> (100 Continue).<\/li>\n\n\n\n<li><strong>Real-time apps<\/strong> like gaming or chats (101 Switching Protocols).<\/li>\n\n\n\n<li><strong>Optimized web performance<\/strong> (103 Early Hints).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Differences Between 1xx and Other Status Codes<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>1xx (Informational):<\/strong> Temporary updates before the final response.<\/li>\n\n\n\n<li><strong>2xx (Success):<\/strong> The request was successful (e.g., 200 OK).<\/li>\n\n\n\n<li><strong>3xx (Redirection):<\/strong> The client must take another action.<\/li>\n\n\n\n<li><strong>4xx (Client Errors):<\/strong> The request has an issue (e.g., 404 Not Found).<\/li>\n\n\n\n<li><strong>5xx (Server Errors):<\/strong> The server failed to complete the request.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How to Check 1xx Status Codes<\/h2>\n\n\n\n<p>Developers can see these codes using:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Browser Developer Tools (Network Tab).<\/strong><\/li>\n\n\n\n<li><strong>Command-line tools like cURL.<\/strong><\/li>\n\n\n\n<li><strong>API testing tools like Postman.<\/strong><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Common Misconceptions About 1xx Codes<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>They indicate errors:<\/strong> No, they are just updates.<\/li>\n\n\n\n<li><strong>They are visible to users:<\/strong> Usually, only developers see them.<\/li>\n\n\n\n<li><strong>All servers use them:<\/strong> Only some advanced applications need them.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p><strong>1xx informational status codes<\/strong> play a key role in web communication. They ensure smooth data transfer between clients and servers. While not common in everyday browsing, they help in <strong>performance optimization<\/strong> and <strong>real-time systems<\/strong>.<\/p>\n\n\n\n<p>Understanding these codes helps developers build <strong>faster and more reliable<\/strong> web applications.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Key Takeaways<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>1xx codes<\/strong> are temporary responses before the final result.<\/li>\n\n\n\n<li><strong>100 Continue<\/strong> helps in large uploads.<\/li>\n\n\n\n<li><strong>101 Switching Protocols<\/strong> is used in real-time apps.<\/li>\n\n\n\n<li><strong>103 Early Hints<\/strong> improves page load speed.<\/li>\n<\/ul>\n\n\n\n<p>By knowing how <strong>1xx status codes<\/strong> work, you can optimize web interactions better.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction to 1xx Informational Status Codes&#8211; When a browser talks to a server, the server sends HTTP status codes. These codes tell the browser what\u2019s happening. 1xx status codes are&hellip;<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49],"tags":[],"class_list":["post-8011","post","type-post","status-publish","format-standard","hentry","category-resources"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.8 (Yoast SEO v24.3) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Understanding 1xx Informational Status Codes<\/title>\n<meta name=\"description\" content=\"Learn about 1xx informational status codes in HTTP responses. Discover their purpose, types, and how they work in web communication.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding 1xx Informational Status Codes\" \/>\n<meta property=\"og:description\" content=\"Learn about 1xx informational status codes in HTTP responses. Discover their purpose, types, and how they work in web communication.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/NotionTechnologies\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-13T04:30:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-19T09:31:25+00:00\" \/>\n<meta name=\"author\" content=\"Caroline Murphy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Understanding 1xx Informational Status Codes\" \/>\n<meta name=\"twitter:description\" content=\"Learn about 1xx informational status codes in HTTP responses. Discover their purpose, types, and how they work in web communication.\" \/>\n<meta name=\"twitter:creator\" content=\"@notiontech\" \/>\n<meta name=\"twitter:site\" content=\"@notiontech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Caroline Murphy\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Understanding 1xx Informational Status Codes","description":"Learn about 1xx informational status codes in HTTP responses. Discover their purpose, types, and how they work in web communication.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/","og_locale":"en_US","og_type":"article","og_title":"Understanding 1xx Informational Status Codes","og_description":"Learn about 1xx informational status codes in HTTP responses. Discover their purpose, types, and how they work in web communication.","og_url":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/","article_publisher":"https:\/\/www.facebook.com\/NotionTechnologies","article_published_time":"2025-05-13T04:30:32+00:00","article_modified_time":"2025-06-19T09:31:25+00:00","author":"Caroline Murphy","twitter_card":"summary_large_image","twitter_title":"Understanding 1xx Informational Status Codes","twitter_description":"Learn about 1xx informational status codes in HTTP responses. Discover their purpose, types, and how they work in web communication.","twitter_creator":"@notiontech","twitter_site":"@notiontech","twitter_misc":{"Written by":"Caroline Murphy","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/#article","isPartOf":{"@id":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/"},"author":{"name":"Caroline Murphy","@id":"https:\/\/www.notiontechnologies.com\/blog\/#\/schema\/person\/e3e03eb273f61161a2d803ecf8d50be7"},"headline":"Understanding 1xx Informational Status Codes","datePublished":"2025-05-13T04:30:32+00:00","dateModified":"2025-06-19T09:31:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/"},"wordCount":533,"publisher":{"@id":"https:\/\/www.notiontechnologies.com\/blog\/#organization"},"articleSection":["Resources"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/","url":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/","name":"Understanding 1xx Informational Status Codes","isPartOf":{"@id":"https:\/\/www.notiontechnologies.com\/blog\/#website"},"datePublished":"2025-05-13T04:30:32+00:00","dateModified":"2025-06-19T09:31:25+00:00","description":"Learn about 1xx informational status codes in HTTP responses. Discover their purpose, types, and how they work in web communication.","breadcrumb":{"@id":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.notiontechnologies.com\/blog\/understanding-1xx-informational-status-codes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.notiontechnologies.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Understanding 1xx Informational Status Codes"}]},{"@type":"WebSite","@id":"https:\/\/www.notiontechnologies.com\/blog\/#website","url":"https:\/\/www.notiontechnologies.com\/blog\/","name":"notiontechnologies.com","description":"","publisher":{"@id":"https:\/\/www.notiontechnologies.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.notiontechnologies.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.notiontechnologies.com\/blog\/#organization","name":"Notion Technologies","url":"https:\/\/www.notiontechnologies.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.notiontechnologies.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.notiontechnologies.com\/blog\/wp-content\/uploads\/2023\/05\/notion-technologies.png","contentUrl":"https:\/\/www.notiontechnologies.com\/blog\/wp-content\/uploads\/2023\/05\/notion-technologies.png","width":336,"height":156,"caption":"Notion Technologies"},"image":{"@id":"https:\/\/www.notiontechnologies.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/NotionTechnologies","https:\/\/x.com\/notiontech","https:\/\/www.linkedin.com\/company\/notiontechnologies","https:\/\/twitter.com\/notiontech"]},{"@type":"Person","@id":"https:\/\/www.notiontechnologies.com\/blog\/#\/schema\/person\/e3e03eb273f61161a2d803ecf8d50be7","name":"Caroline Murphy","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.notiontechnologies.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ce57f0ceee12fcdf8b2015d2d3b9e4c2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ce57f0ceee12fcdf8b2015d2d3b9e4c2?s=96&d=mm&r=g","caption":"Caroline Murphy"},"description":"Staff Writer. Frequently covers tech, business psychology, social media, startups and digital marketing.","sameAs":["https:\/\/www.notiontechnologies.com"],"url":"https:\/\/www.notiontechnologies.com\/blog\/author\/caroline-murphy\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/8011","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/comments?post=8011"}],"version-history":[{"count":3,"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/8011\/revisions"}],"predecessor-version":[{"id":8015,"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/8011\/revisions\/8015"}],"wp:attachment":[{"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/media?parent=8011"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/categories?post=8011"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.notiontechnologies.com\/blog\/wp-json\/wp\/v2\/tags?post=8011"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}