{"id":7119,"date":"2022-01-19T11:59:43","date_gmt":"2022-01-19T06:29:43","guid":{"rendered":"https:\/\/www.goseeko.com\/blog\/?p=7119"},"modified":"2025-10-19T22:45:29","modified_gmt":"2025-10-19T17:15:29","slug":"what-is-a-linked-list","status":"publish","type":"post","link":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/","title":{"rendered":"What is a Linked list?"},"content":{"rendered":"\n<p>A <a href=\"https:\/\/en.wikipedia.org\/wiki\/Linked_list\" target=\"_blank\" rel=\"noreferrer noopener\">linked list <\/a>(LL)<a href=\"https:\/\/en.wikipedia.org\/wiki\/Linked_list\" target=\"_blank\" rel=\"noreferrer noopener\"> <\/a>is a collection of elements with the exception that the components are not stored in a sequential order.<\/p>\n\n\n\n<p>If a programmer requests that an integer value stores, the integer value is given the size of a 4-byte memory block. The programmer issued a new request to store three more integer elements; three distinct memory blocks were then allot to these three elements, but the memory blocks were located at random. So, what&#8217;s the connection between the elements?<\/p>\n\n\n\n<p>These elements are linked by providing one additional piece of information, namely the address of the next element, with each element. A pointer is a variable that stores the address of the next element. As a result, we can deduce that the LL is made up of two components, the first of which is the data element and the second of which is the pointer.<\/p>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/Dd2lmgvPtYcfkxFMm0WSNV7KbuhSE6-ZrhOBmRpZULBpeZv27P1yZ3gwPUlBzofg7vYHlN7FB2QBKRrUU-6qs7DQv3Cd6QGW1WwBneeEGI0AihjYBH3_4zLFtfsVgjB6dJ7mvfJ8\" style=\"\" alt=\"linked list diagram\"><\/p>\n\n\n\n<p>Fig : linked list&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Declaration of linked list<\/strong><\/h2>\n\n\n\n<p>Because an array is of a single type, declaring it is quite straightforward. However, the LL has two pieces, each of which is of a different type, namely, a simple variable and a pointer variable. The LL declared using the structure user-defined data type.<\/p>\n\n\n\n<p>A linked list&#8217;s structure described as follows:<\/p>\n\n\n\n<p>struct node&nbsp;&nbsp;<\/p>\n\n\n\n<p>{&nbsp;&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;int data;&nbsp;&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;struct node *next;&nbsp;&nbsp;<\/p>\n\n\n\n<p>}&nbsp;&nbsp;<\/p>\n\n\n\n<p>We&#8217;ve established a structure called a node in the above declaration, which consists of two variables: an integer variable (data) and a pointer (next), which carries the address of the next node.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Advantages&nbsp;<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Data structure that is always changing.<\/li>\n\n\n\n<li>Insertion and deletion are two different things.<\/li>\n\n\n\n<li>Memory-friendly.<\/li>\n\n\n\n<li>Implementation.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Disadvantages&nbsp;<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Memory consumption.<\/li>\n\n\n\n<li>Traversal.<\/li>\n\n\n\n<li>Traversing backwards.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Application<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Memory allocation that is dynamic.<\/li>\n\n\n\n<li>Stack and queue implementations.<\/li>\n\n\n\n<li>Software&#8217;s undo functionality.<\/li>\n\n\n\n<li>Graphs, hash tables<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Types&nbsp;<\/strong><\/h2>\n\n\n\n<p>The following are the types of LL:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Singly Linked list<\/li>\n\n\n\n<li>Doubly Linked list<\/li>\n\n\n\n<li>Circular Linked list<\/li>\n\n\n\n<li>Doubly Circular Linked list<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Interested in learning about similar topics? Here are a few hand-picked blogs for you!<br><\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.goseeko.com\/blog\/what-is-sorting-algorithm\" target=\"_blank\" rel=\"noreferrer noopener\">What is Sorting Algorithm?<\/a> <a href=\"https:\/\/arkhangai.cfga.gov.mn\/\">https:\/\/arkhangai.cfga.gov.mn\/<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.goseeko.com\/blog\/what-is-data-structure\/\" target=\"_blank\" rel=\"noreferrer noopener\">Explain data structure?<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.goseeko.com\/blog\/what-is-recursion\" target=\"_blank\" rel=\"noreferrer noopener\">What is Recursion?<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.goseeko.com\/blog\/what-is-a-minimum-spanning-tree\/\" target=\"_blank\" rel=\"noreferrer noopener\">Illustrate minimum spanning tree?<\/a><\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>A linked list is a collection of elements with the exception that the components are not stored in a sequential order.<\/p>\n","protected":false},"author":28,"featured_media":11733,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[36],"tags":[],"class_list":["post-7119","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-computer-science-software-engineering-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is a Linked list? - Goseeko blog<\/title>\n<meta name=\"description\" content=\"A linked list is a collection of elements with the exception that the components are not stored in a sequential order.\" \/>\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.goseeko.com\/blog\/what-is-a-linked-list\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is a Linked list? - Goseeko blog\" \/>\n<meta property=\"og:description\" content=\"A linked list is a collection of elements with the exception that the components are not stored in a sequential order.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/\" \/>\n<meta property=\"og:site_name\" content=\"Goseeko blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/goseeko\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-19T06:29:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-19T17:15:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1230\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Gunjan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@goseeko\" \/>\n<meta name=\"twitter:site\" content=\"@goseeko\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gunjan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/\"},\"author\":{\"name\":\"Gunjan\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c\"},\"headline\":\"What is a Linked list?\",\"datePublished\":\"2022-01-19T06:29:43+00:00\",\"dateModified\":\"2025-10-19T17:15:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/\"},\"wordCount\":360,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp?fit=1230%2C630&ssl=1\",\"articleSection\":[\"Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/\",\"url\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/\",\"name\":\"What is a Linked list? - Goseeko blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp?fit=1230%2C630&ssl=1\",\"datePublished\":\"2022-01-19T06:29:43+00:00\",\"dateModified\":\"2025-10-19T17:15:29+00:00\",\"description\":\"A linked list is a collection of elements with the exception that the components are not stored in a sequential order.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp?fit=1230%2C630&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp?fit=1230%2C630&ssl=1\",\"width\":1230,\"height\":630,\"caption\":\"linkedlist datastructure example using toy blocks\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.goseeko.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is a Linked list?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#website\",\"url\":\"https:\/\/www.goseeko.com\/blog\/\",\"name\":\"Goseeko blog\",\"description\":\"Learning beyond college, Students platform for life skills.\",\"publisher\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.goseeko.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\",\"name\":\"Goseeko.com\",\"url\":\"https:\/\/www.goseeko.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1\",\"contentUrl\":\"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1\",\"width\":2471,\"height\":2471,\"caption\":\"Goseeko.com\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/goseeko\",\"https:\/\/x.com\/goseeko\",\"https:\/\/www.instagram.com\/goseeko\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c\",\"name\":\"Gunjan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g\",\"caption\":\"Gunjan\"},\"url\":\"https:\/\/www.goseeko.com\/blog\/author\/gunjangoseeko\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is a Linked list? - Goseeko blog","description":"A linked list is a collection of elements with the exception that the components are not stored in a sequential order.","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.goseeko.com\/blog\/what-is-a-linked-list\/","og_locale":"en_US","og_type":"article","og_title":"What is a Linked list? - Goseeko blog","og_description":"A linked list is a collection of elements with the exception that the components are not stored in a sequential order.","og_url":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/","og_site_name":"Goseeko blog","article_publisher":"https:\/\/www.facebook.com\/goseeko","article_published_time":"2022-01-19T06:29:43+00:00","article_modified_time":"2025-10-19T17:15:29+00:00","og_image":[{"width":1230,"height":630,"url":"https:\/\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp","type":"image\/webp"}],"author":"Gunjan","twitter_card":"summary_large_image","twitter_creator":"@goseeko","twitter_site":"@goseeko","twitter_misc":{"Written by":"Gunjan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#article","isPartOf":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/"},"author":{"name":"Gunjan","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c"},"headline":"What is a Linked list?","datePublished":"2022-01-19T06:29:43+00:00","dateModified":"2025-10-19T17:15:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/"},"wordCount":360,"commentCount":0,"publisher":{"@id":"https:\/\/www.goseeko.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp?fit=1230%2C630&ssl=1","articleSection":["Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/","url":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/","name":"What is a Linked list? - Goseeko blog","isPartOf":{"@id":"https:\/\/www.goseeko.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#primaryimage"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp?fit=1230%2C630&ssl=1","datePublished":"2022-01-19T06:29:43+00:00","dateModified":"2025-10-19T17:15:29+00:00","description":"A linked list is a collection of elements with the exception that the components are not stored in a sequential order.","breadcrumb":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#primaryimage","url":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp?fit=1230%2C630&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp?fit=1230%2C630&ssl=1","width":1230,"height":630,"caption":"linkedlist datastructure example using toy blocks"},{"@type":"BreadcrumbList","@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-linked-list\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.goseeko.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What is a Linked list?"}]},{"@type":"WebSite","@id":"https:\/\/www.goseeko.com\/blog\/#website","url":"https:\/\/www.goseeko.com\/blog\/","name":"Goseeko blog","description":"Learning beyond college, Students platform for life skills.","publisher":{"@id":"https:\/\/www.goseeko.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.goseeko.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.goseeko.com\/blog\/#organization","name":"Goseeko.com","url":"https:\/\/www.goseeko.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1","contentUrl":"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1","width":2471,"height":2471,"caption":"Goseeko.com"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/goseeko","https:\/\/x.com\/goseeko","https:\/\/www.instagram.com\/goseeko\/"]},{"@type":"Person","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c","name":"Gunjan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g","caption":"Gunjan"},"url":"https:\/\/www.goseeko.com\/blog\/author\/gunjangoseeko\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2022\/01\/linkedlist-example-blocks-format.webp?fit=1230%2C630&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/7119","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/comments?post=7119"}],"version-history":[{"count":3,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/7119\/revisions"}],"predecessor-version":[{"id":12075,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/7119\/revisions\/12075"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/media\/11733"}],"wp:attachment":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/media?parent=7119"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/categories?post=7119"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/tags?post=7119"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}