{"id":27159,"date":"2020-12-17T19:29:48","date_gmt":"2020-12-18T03:29:48","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=27159"},"modified":"2021-01-04T02:51:35","modified_gmt":"2021-01-04T10:51:35","slug":"jquery-get","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/jquery-get\/","title":{"rendered":"How to Use jQuery get()"},"content":{"rendered":"\n<p>A cornerstone of building a web application is using HTTP requests. HTTP requests allow data to be captured from a user input then sent through the back end to a server.&nbsp; Afterwards, a response is returned.<br><\/p>\n\n\n\n<p>Sometimes these requests send data that is saved to the database, as in a POST request.&nbsp; Other common requests receive a response and display it to the user. This is known as a GET request. jQuery has a <code>get()<\/code> method that makes sending a request a streamlined process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is jQuery get()?<\/h2>\n\n\n\n<p>jQuery <code>get()<\/code> is a method that sends a GET request to a URL endpoint and receives a response. The response is data sent back from the server. Unlike a POST request, a GET request only receives pre-existing data from the server. It does not save anything to the database.<br><\/p>\n\n\n\n<p>A GET request is useful for requesting a specific subset of data and doing something with it. For example, if we are building an e-commerce app, we would send a GET request to a URL endpoint to access products. We can take the data received in a response, and style it to create a card layout of all the products available for purchase.<br><\/p>\n\n\n\n<p>jQuery <code>get()<\/code> is responsible for sending a request to a URL and receiving the data as a response. The developer now has access to the data from the server and can choose to display it to the user as desired.&nbsp;<br><\/p>\n\n\n\n<p>Now that we are familiar with what a GET request is, let\u2019s look at the <code>get()<\/code> method\u2019s syntax.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">get() jQuery Syntax<\/h2>\n\n\n\n<p>jQuery makes sending a GET request straightforward. <code>get()<\/code> receives the URL address as a string and a callback function to receive the data. Basically, a callback function is a function passed to a method to be executed at a later time.&nbsp;&nbsp;<br><\/p>\n\n\n\n<p>For a more in depth explanation of callback functions, check out this <a href=\"https:\/\/careerkarma.com\/blog\/javascript-callback\/#:~:text=What%20is%20a%20Callback%20Function,a%20parameter%20into%20another%20function.&amp;text=Once%20it%20has%20run%2C%20the,top%20bootcamps%20and%20online%20schools!\">guide<\/a>.&nbsp;<br><\/p>\n\n\n\n<p>There are a few optional arguments <code>get()<\/code> accepts, but the most commonly used are the URL and callback function.<br><\/p>\n\n\n\n<p>Sticking with our e-commerce example, let\u2019s see what a basic GET request would look like using <code>get()<\/code>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$.get('\/products', (data) =&gt; {\n  console.log(data)\n  })<\/pre><\/div>\n\n\n\n<p>We call <code>get()<\/code> and pass it the URL as a string. The request is being sent to the products index page and the server will send back the data. The callback function accepts a few arguments, but data and status will suffice for our purposes.<br><\/p>\n\n\n\n<p>Data represents the data received from the request. In our example, we are simply outputting what is returned in the console. jQuery was built to recognize a few data types, but most likely we will get a JSON object.<br><\/p>\n\n\n\n<p>Further code will be needed to extract the desired information from our JSON object. Let\u2019s take a look at how we might do that.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">jQuery get() Example<\/h2>\n\n\n\n<p>For our example, let\u2019s use a fun API. This site tells us how many astronauts are in space right now! It also gives us the names and space crafts. Let\u2019s start by passing the URL to <code>get()<\/code>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$.get('http:\/\/api.open-notify.org\/astros.json', (data) =&gt; {\n  console.log(data)\n })<\/pre><\/div>\n\n\n\n<p>When we send the request, we get this response logged in our console:&nbsp;<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/Bn4yjha__Vk7AMBJam_jEki4s9mT-I_r7xuF4fID3EyY_dY9RfMqsSwa4eajflg_H292E1DMP-AqA-M0YNJvW8NNyoiwPsNPAAZp26bW0fnODWJxzKTsaC7MSBAL_2qwnRV_dAcS\" alt=\"\"\/><\/figure>\n\n\n\n<p>From the URL, we already know we will get a JSON object returned from the server.&nbsp; In the console, we see the keys of \u201cmessage\u201d, \u201cnumber\u201d, and \u201cpeople.\u201d&nbsp; The message value of success helps in error handling.<br><\/p>\n\n\n\n<p>The number key refers to the count of people in space. \u201cPeople\u201d points to a value containing an array of objects. From here, we could iterate over the \u201cpeople\u201d array and display that information to the user as a list. Getting data back like this leaves the choices to the developer on how to display the data returned by the server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>We reviewed what a GET request is and how jQuery makes it quick and straightforward.&nbsp; After getting familiar with common syntax practices, we saw <code>get()<\/code> in action. It\u2019s important to note that the data can be iterated and rendered from the body of the callback function.&nbsp;<br><\/p>\n\n\n\n<p>From here, a fun project could be looking up&nbsp; simple APIs and building small projects to practice sending GET requests and displaying that data. Receiving and rendering the data in a pleasing way is the beginning of becoming a proficient developer.<\/p>\n","protected":false},"excerpt":{"rendered":"A cornerstone of building a web application is using HTTP requests. HTTP requests allow data to be captured from a user input then sent through the back end to a server.&nbsp; Afterwards, a response is returned. Sometimes these requests send data that is saved to the database, as in a POST request.&nbsp; Other common requests&hellip;","protected":false},"author":104,"featured_media":22999,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-27159","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-javascript"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"JavaScript","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Use jQuery get(): The Complete Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"GET requests retrieve information from a server to be displayed client side. jQuery get() streamlines this process to a few lines of code. Read our guide to get started.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/jquery-get\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use jQuery get()\" \/>\n<meta property=\"og:description\" content=\"GET requests retrieve information from a server to be displayed client side. jQuery get() streamlines this process to a few lines of code. Read our guide to get started.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/jquery-get\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-18T03:29:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-04T10:51:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/code-944499_640.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"344\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ryan Manchester\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ryan Manchester\" \/>\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:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/\"},\"author\":{\"name\":\"Ryan Manchester\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\"},\"headline\":\"How to Use jQuery get()\",\"datePublished\":\"2020-12-18T03:29:48+00:00\",\"dateModified\":\"2021-01-04T10:51:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/\"},\"wordCount\":712,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/code-944499_640.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/\",\"name\":\"How to Use jQuery get(): The Complete Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/code-944499_640.jpg\",\"datePublished\":\"2020-12-18T03:29:48+00:00\",\"dateModified\":\"2021-01-04T10:51:35+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\"},\"description\":\"GET requests retrieve information from a server to be displayed client side. jQuery get() streamlines this process to a few lines of code. Read our guide to get started.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/code-944499_640.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/code-944499_640.jpg\",\"width\":640,\"height\":344},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-get\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Use jQuery get()\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\",\"name\":\"Ryan Manchester\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/ryan-manchester-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/ryan-manchester-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/ryan-manchester-150x150.jpg\",\"caption\":\"Ryan Manchester\"},\"description\":\"Ryan is a technical writer at Career Karma, where he covers programming languages, technology, and web development. The Texas native earned his Bachelor's of Music Composition from the University of North Texas. Ryan is currently pursuing further education in web development, aiming to graduate from Flatiron School with a certification in full stack web development. Since joining the Career Karma team in November 2020, Ryan has used his expertise to cover topics like React and Ruby on Rails.\",\"sameAs\":[\"http:\\\/\\\/www.ryanmanchester.info\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ryan-manchester-6537a630\\\/\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/ryan-manchester\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Use jQuery get(): The Complete Guide | Career Karma","description":"GET requests retrieve information from a server to be displayed client side. jQuery get() streamlines this process to a few lines of code. Read our guide to get started.","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:\/\/careerkarma.com\/blog\/jquery-get\/","og_locale":"en_US","og_type":"article","og_title":"How to Use jQuery get()","og_description":"GET requests retrieve information from a server to be displayed client side. jQuery get() streamlines this process to a few lines of code. Read our guide to get started.","og_url":"https:\/\/careerkarma.com\/blog\/jquery-get\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-18T03:29:48+00:00","article_modified_time":"2021-01-04T10:51:35+00:00","og_image":[{"width":640,"height":344,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/code-944499_640.jpg","type":"image\/jpeg"}],"author":"Ryan Manchester","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Ryan Manchester","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/"},"author":{"name":"Ryan Manchester","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5"},"headline":"How to Use jQuery get()","datePublished":"2020-12-18T03:29:48+00:00","dateModified":"2021-01-04T10:51:35+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/"},"wordCount":712,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/code-944499_640.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/jquery-get\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/","url":"https:\/\/careerkarma.com\/blog\/jquery-get\/","name":"How to Use jQuery get(): The Complete Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/code-944499_640.jpg","datePublished":"2020-12-18T03:29:48+00:00","dateModified":"2021-01-04T10:51:35+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5"},"description":"GET requests retrieve information from a server to be displayed client side. jQuery get() streamlines this process to a few lines of code. Read our guide to get started.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/jquery-get\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/code-944499_640.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/code-944499_640.jpg","width":640,"height":344},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/jquery-get\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/careerkarma.com\/blog\/javascript\/"},{"@type":"ListItem","position":3,"name":"How to Use jQuery get()"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5","name":"Ryan Manchester","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/ryan-manchester-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/ryan-manchester-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/ryan-manchester-150x150.jpg","caption":"Ryan Manchester"},"description":"Ryan is a technical writer at Career Karma, where he covers programming languages, technology, and web development. The Texas native earned his Bachelor's of Music Composition from the University of North Texas. Ryan is currently pursuing further education in web development, aiming to graduate from Flatiron School with a certification in full stack web development. Since joining the Career Karma team in November 2020, Ryan has used his expertise to cover topics like React and Ruby on Rails.","sameAs":["http:\/\/www.ryanmanchester.info\/","https:\/\/www.linkedin.com\/in\/ryan-manchester-6537a630\/"],"url":"https:\/\/careerkarma.com\/blog\/author\/ryan-manchester\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/27159","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/104"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=27159"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/27159\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/22999"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=27159"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=27159"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=27159"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}