{"id":10793,"date":"2023-03-06T22:41:33","date_gmt":"2023-03-06T17:11:33","guid":{"rendered":"http:\/\/myprojectideas.com\/?p=10793"},"modified":"2025-10-11T12:06:49","modified_gmt":"2025-10-11T12:06:49","slug":"automatic-streetlight-with-arduino","status":"publish","type":"post","link":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/","title":{"rendered":"Automatic Streetlight With Arduino"},"content":{"rendered":"<h2><strong>Introduction of the Project<\/strong><\/h2>\n<p>If you&#8217;re looking for a fun and easy DIY project that can make your neighborhood a little brighter, look no further than building your own automatic streetlight with Arduino! With just a few simple components and some programming know-how, you can create a device that senses when the sun goes down and automatically turns on a light to keep your street or driveway illuminated. In this Arduino project, we will use a photoresistor sensor, which will help us to glow the bulb at night time and automatically turn it off when daylight is present.<\/p>\n<p>To get started, you&#8217;ll need an Arduino board, a photoresistor, a resistor, a breadboard, and some wires. You&#8217;ll also need a light fixture that you can connect to the relay module. Once you have your components, it&#8217;s time to start building.<\/p>\n<p>First, connect the photoresistor l to the breadboard and use wires to connect it to the Arduino board. Next, connect the relay module to the breadboard and use wires to connect it to the Arduino board as well. Finally, connect your light fixture to the relay module.<\/p>\n<p>Now it&#8217;s time to write the code. You&#8217;ll need to use the Arduino IDE to create a program that reads the values from the photoresistor and determines whether it&#8217;s dark enough to turn on the light. When the light needs to be turned on, the program will activate the relay module to switch the light on.<\/p>\n<p>Once your code is written, upload it to your Arduino board and watch as your automatic streetlight comes to life! With just a few simple steps, you&#8217;ll have a device that makes your home a little safer and more secure. Plus, it&#8217;s a fun and educational way to learn more about programming and electronics. So why not give it a try today?<\/p>\n<iframe loading=\"lazy\"  id=\"_ytid_77944\"  width=\"1080\" height=\"607\"  data-origwidth=\"1080\" data-origheight=\"607\" src=\"https:\/\/www.youtube.com\/embed\/WAW01E6lOJU?enablejsapi=1&autoplay=0&cc_load_policy=0&cc_lang_pref=&iv_load_policy=1&loop=0&rel=1&fs=1&playsinline=0&autohide=2&theme=dark&color=red&controls=1&\" class=\"__youtube_prefs__  no-lazyload\" title=\"YouTube player\"  allow=\"fullscreen; accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen data-no-lazy=\"1\" data-skipgform_ajax_framebjll=\"\"><\/iframe>\n<p>&nbsp;<\/p>\n<h2><strong>Supplies<\/strong><\/h2>\n<p>In order to make an Automatic Streetlight with Arduino, we will require the following components listed below:<\/p>\n<h3><strong>Components<\/strong><\/h3>\n<ul>\n<li><a href=\"https:\/\/docs.arduino.cc\/hardware\/uno-rev3\">Arduino Uno R3<\/a><\/li>\n<li>1 Bulb<\/li>\n<li>1 <a href=\"https:\/\/eepower.com\/resistor-guide\/resistor-types\/photo-resistor\/\">Photoresistor Sensor<\/a><\/li>\n<li>1 Small Breadboard<\/li>\n<li>1 Resistor<\/li>\n<li>Connecting Wires<\/li>\n<\/ul>\n<h2><strong>Circuit Diagram<\/strong><\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-17727 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2023\/03\/word-image-10793-1.webp\" alt=\"Automatic Streetlight With Arduino\" width=\"1517\" height=\"597\" \/><\/p>\n<h2><strong>Steps To Make An Automatic Streetlight With Arduino<\/strong><\/h2>\n<p><strong>Step 1:<\/strong> First, we gathered all the components on the Digital Board.<\/p>\n<p><em><strong>Bulb:<\/strong><\/em><\/p>\n<p><strong>Step 2:<\/strong> Connect the +ve terminal of the bulb to the GND(ground) pin of the Arduino.<\/p>\n<p><strong>Step 3:<\/strong> Connect the -ve terminal of the bulb to the Number-5 pin of the Arduino.<\/p>\n<p><em><strong>PhotoResistor Sensor:<\/strong><\/em><\/p>\n<p><strong>Step 4:<\/strong> Connect the 1st terminal of the Photoresistor to the 5V pin of the Arduino.<\/p>\n<p><strong>Step 5:<\/strong> Connect the 2nd terminal of the Photoresistor to the GND pin of the Arduino through a resistor.<\/p>\n<p><strong>Step 6:<\/strong> Connect the same second terminal of the Photoresistor to the A0 number pin of the Arduino.<\/p>\n<h2><strong>Source Code<\/strong><\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"cpp\">int bulb = 5;\r\n\r\nint sensor = A0;\r\n\r\nvoid setup()\r\n\r\n{\r\n\r\npinMode(5, OUTPUT);\r\n\r\npinMode(A0, INPUT);\r\n\r\n}\r\n\r\nvoid loop()\r\n\r\n{\r\n\r\nint sensorValue;\r\n\r\n\r\n\r\n\r\ndigitalWrite(bulb, LOW);\r\n\r\n\r\n\r\n\r\nsensorValue = analogRead(sensor);\r\n\r\nif(sensorValue &lt;= 400)\r\n\r\ndigitalWrite(bulb, HIGH);\r\n\r\n}<\/pre>\n<h2><strong>Explanation of the Code<\/strong><\/h2>\n<p>1. In the beginning, we initialized two variables, <em><strong>bulb<\/strong><\/em>, and <em><strong>sensor<\/strong><\/em>, namely to which the respective component is connected to their respective Arduino pin number.<\/p>\n<p>2. In the setup function, we have configured the Arduino pins for input and output purposes.<\/p>\n<p>3. In the loop function, we have declared a variable <em><strong>&#8220;sensorValue&#8221;<\/strong><\/em> to store the value of the photoresistor sensor, after which we are reading the value from the sensor.<\/p>\n<p>4. If the <em><strong>&#8220;sensorValue&#8221;<\/strong><\/em> is less than or equal to 400 means it&#8217;s night time, and hence, we are glowing the bulb. During the day, it will not glow as the intensity of daylight is already high.<\/p>\n<h2><a id=\"post-10793-_1fob9te\"><\/a><strong>Output<\/strong><\/h2>\n<p>We will get the following output on the successful completion of the project.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-17729 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2023\/03\/Automatic-Streetlight-With-Arduino.webp\" alt=\"Automatic Streetlight With Arduino\" width=\"384\" height=\"212\" \/><\/p>\n<p>On starting the simulation, the Bulb will glow if the intensity of the daylight is low(i.e., at night time), else it will not glow.<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/rudelabs.ai\/blogs\/category\/arduino\/\"><em><strong>More Arduino Projects&gt;&gt;&gt;<\/strong><\/em><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this Arduino project, we will use a photoresistor sensor, which will help us to glow the bulb at night time and automatically turn it off when daylight is present.<\/p>\n","protected":false},"author":1,"featured_media":10794,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[31,4,7],"tags":[],"class_list":["post-10793","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino","category-coding-basics","category-coding-projects"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Automatic Streetlight With Arduino - RUDE LABS<\/title>\n<meta name=\"description\" content=\"If you&#039;re looking for a fun and easy DIY project that can make your neighborhood a little brighter, look no further than building your own automatic streetlight with Arduino!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automatic Streetlight With Arduino - RUDE LABS\" \/>\n<meta property=\"og:description\" content=\"If you&#039;re looking for a fun and easy DIY project that can make your neighborhood a little brighter, look no further than building your own automatic streetlight with Arduino!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/\" \/>\n<meta property=\"og:site_name\" content=\"RUDE LABS\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-06T17:11:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-11T12:06:49+00:00\" \/>\n<meta name=\"author\" content=\"rudelabs.ai\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rudelabs_in\" \/>\n<meta name=\"twitter:site\" content=\"@rudelabs_in\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rudelabs.ai\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/\"},\"author\":{\"name\":\"rudelabs.ai\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\"},\"headline\":\"Automatic Streetlight With Arduino\",\"datePublished\":\"2023-03-06T17:11:33+00:00\",\"dateModified\":\"2025-10-11T12:06:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/\"},\"wordCount\":620,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Arduino\",\"Coding Basics\",\"Coding Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/\",\"name\":\"Automatic Streetlight With Arduino - RUDE LABS\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2023-03-06T17:11:33+00:00\",\"dateModified\":\"2025-10-11T12:06:49+00:00\",\"description\":\"If you're looking for a fun and easy DIY project that can make your neighborhood a little brighter, look no further than building your own automatic streetlight with Arduino!\",\"breadcrumb\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rudelabs.ai\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automatic Streetlight With Arduino\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/\",\"name\":\"RUDE LABS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/rudelabs.ai\/blogs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\",\"name\":\"RUDE LABS\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp\",\"contentUrl\":\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp\",\"width\":2459,\"height\":414,\"caption\":\"RUDE LABS\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/rudelabs_in\",\"https:\/\/www.linkedin.com\/company\/ru-delabs\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\",\"name\":\"rudelabs.ai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g\",\"caption\":\"rudelabs.ai\"},\"sameAs\":[\"https:\/\/rudelabs.ai\/blogs\"],\"url\":\"https:\/\/rudelabs.ai\/blogs\/author\/rudelabs-ai\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Automatic Streetlight With Arduino - RUDE LABS","description":"If you're looking for a fun and easy DIY project that can make your neighborhood a little brighter, look no further than building your own automatic streetlight with Arduino!","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:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/","og_locale":"en_US","og_type":"article","og_title":"Automatic Streetlight With Arduino - RUDE LABS","og_description":"If you're looking for a fun and easy DIY project that can make your neighborhood a little brighter, look no further than building your own automatic streetlight with Arduino!","og_url":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/","og_site_name":"RUDE LABS","article_published_time":"2023-03-06T17:11:33+00:00","article_modified_time":"2025-10-11T12:06:49+00:00","author":"rudelabs.ai","twitter_card":"summary_large_image","twitter_creator":"@rudelabs_in","twitter_site":"@rudelabs_in","twitter_misc":{"Written by":"rudelabs.ai","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#article","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/"},"author":{"name":"rudelabs.ai","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894"},"headline":"Automatic Streetlight With Arduino","datePublished":"2023-03-06T17:11:33+00:00","dateModified":"2025-10-11T12:06:49+00:00","mainEntityOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/"},"wordCount":620,"commentCount":0,"publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#primaryimage"},"thumbnailUrl":"","articleSection":["Arduino","Coding Basics","Coding Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/","url":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/","name":"Automatic Streetlight With Arduino - RUDE LABS","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#primaryimage"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#primaryimage"},"thumbnailUrl":"","datePublished":"2023-03-06T17:11:33+00:00","dateModified":"2025-10-11T12:06:49+00:00","description":"If you're looking for a fun and easy DIY project that can make your neighborhood a little brighter, look no further than building your own automatic streetlight with Arduino!","breadcrumb":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/rudelabs.ai\/blogs\/automatic-streetlight-with-arduino\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rudelabs.ai\/blogs\/"},{"@type":"ListItem","position":2,"name":"Automatic Streetlight With Arduino"}]},{"@type":"WebSite","@id":"https:\/\/rudelabs.ai\/blogs\/#website","url":"https:\/\/rudelabs.ai\/blogs\/","name":"RUDE LABS","description":"","publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rudelabs.ai\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/rudelabs.ai\/blogs\/#organization","name":"RUDE LABS","url":"https:\/\/rudelabs.ai\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp","contentUrl":"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp","width":2459,"height":414,"caption":"RUDE LABS"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/rudelabs_in","https:\/\/www.linkedin.com\/company\/ru-delabs\/"]},{"@type":"Person","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894","name":"rudelabs.ai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g","caption":"rudelabs.ai"},"sameAs":["https:\/\/rudelabs.ai\/blogs"],"url":"https:\/\/rudelabs.ai\/blogs\/author\/rudelabs-ai\/"}]}},"_links":{"self":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10793","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/comments?post=10793"}],"version-history":[{"count":2,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10793\/revisions"}],"predecessor-version":[{"id":17730,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10793\/revisions\/17730"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/media?parent=10793"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/categories?post=10793"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/tags?post=10793"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}