{"id":1115,"date":"2016-04-25T17:11:50","date_gmt":"2016-04-25T14:11:50","guid":{"rendered":"http:\/\/www.systemcodegeeks.com\/?p=1115"},"modified":"2016-04-25T14:49:31","modified_gmt":"2016-04-25T11:49:31","slug":"aws-zsh-helper","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/","title":{"rendered":"AWS ZSH Helper"},"content":{"rendered":"<p>This morning I\u2019m going to go with a new recurring weekly post: Friday Functions! While some of it will aim to share my large inventory of zsh functions I\u2019ve acquired over the years I\u2019ll also be finding new additions if I run out of material. So it also serves to help me learn more!<\/p>\n<p>This week\u2019s function is probably only useful if you\u2019re into <a href=\"https:\/\/aws.amazon.com\/\">AWS<\/a> and use the <a href=\"https:\/\/aws.amazon.com\/cli\/\">awscli tool<\/a> to interact with it from the command line. Using the <code>awscli<\/code> command direction can be quite verbose so some nice shortcuts are useful. I actually learned of this handy function from <a href=\"https:\/\/github.com\/krismolendyke\/.zsh#list-instances-by-tag-name\">Kris\u2019s<\/a> awesome collection of zsh configuration and made a few small adaptions to it.<\/p>\n<pre class=\"brush:bash\">function aws-instances-describe() {\r\n    zparseopts -D -E -A opts -- o: t: s:\r\n    output=${opts[-o]:-\"table\"}\r\n    tag_name=${opts[-t]:-\"Name\"}\r\n    state=${opts[-s]:-\"running\"}\r\n\r\n    name=${1}\r\n    query=(\r\n        \"Reservations[].Instances[]\"\r\n        \".{\"\r\n        \"Name             : Tags[?Key == \\`Name\\`].Value | [0],\"\r\n        \"State            : State.Name,\"\r\n        \"LaunchTime       : LaunchTime,\"\r\n        \"InstanceId       : InstanceId,\"\r\n        \"PrivateIpAddress : PrivateIpAddress,\"\r\n        \"PublicIpAddress  : PublicIpAddress,\"\r\n        \"ImageId          : ImageId,\"\r\n        \"InstanceType     : InstanceType\"\r\n        \"}\"\r\n    )\r\n\r\n    aws --output ${output} \\\r\n        ec2 describe-instances \\\r\n        --filters \"Name=tag:${tag_name},Values=*${name}*\" \"Name=instance-state-name,Values=${state}\" \\\r\n        --query \"${query}\"\r\n}\r\n<\/pre>\n<p>This is pretty useful. If you want to find all instances with <code>http<\/code> in the name you just run <code>aws-instances-describe http<\/code>.<\/p>\n<p><a href=\"http:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/04\/Screen-Shot-2016-03-31-at-6.14.42-PM.png\"><img decoding=\"async\" class=\"aligncenter wp-image-1116 size-large\" src=\"http:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/04\/Screen-Shot-2016-03-31-at-6.14.42-PM-1024x244.png\" alt=\"Screen-Shot-2016-03-31-at-6.14.42-PM\" width=\"620\" height=\"148\" srcset=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/04\/Screen-Shot-2016-03-31-at-6.14.42-PM-1024x244.png 1024w, https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/04\/Screen-Shot-2016-03-31-at-6.14.42-PM-300x72.png 300w, https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/04\/Screen-Shot-2016-03-31-at-6.14.42-PM-768x183.png 768w, https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/04\/Screen-Shot-2016-03-31-at-6.14.42-PM.png 1380w\" sizes=\"(max-width: 620px) 100vw, 620px\" \/><\/a><\/p>\n<p>Or if you want to look for instances by a specific tag you can use the `-t` switch. For example, to find all instances with the <code>worker_email<\/code> <code>role<\/code> tag we can just run <code>aws-instance-describe -t role worker_email<\/code>. You can add <code>-s<\/code> to changed the filter to include the running state and like the actual call you can include multiple instances. So if you wanted to find all stopped instances with the<code>taskhistory role<\/code> you\u2019d run <code>aws-instance-describe -t role taskhistory -s stopped<\/code>. The function sets this to default to <code>running<\/code> instances only since that\u2019s what I\u2019m looking for 99% of the time\u2026 looking for stopped or terminated instances is definitely the exception.<\/p>\n<p>Hope this was interesting enough. Ideas, thoughts, comments or criticism are all welcome in the comments below! Let me know what you think!<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td><span class=\"reference\">Reference: <\/span><\/td>\n<td><a href=\"http:\/\/blog.james-carr.org\/2016\/04\/01\/friday-functions-aws-zsh-helper\/\">Friday Functions: AWS ZSH Helper<\/a> from our <a href=\"http:\/\/www.systemcodegeeks.com\/join-us\/scg\/\">SCG partner<\/a>\u00a0<span data-sheets-value=\"[null,2,&quot;James Carr&quot;]\" data-sheets-userformat=\"[null,null,4224,null,null,null,null,null,null,null,2,null,null,null,null,&quot;arial,sans,sans-serif&quot;]\">James Carr<\/span> at the <a href=\"http:\/\/blog.james-carr.org\/\">Rants and Musings of an Agile Developer<\/a> blog.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>This morning I\u2019m going to go with a new recurring weekly post: Friday Functions! While some of it will aim to share my large inventory of zsh functions I\u2019ve acquired over the years I\u2019ll also be finding new additions if I run out of material. So it also serves to help me learn more! This &hellip;<\/p>\n","protected":false},"author":22,"featured_media":203,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[48],"class_list":["post-1115","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-zsh","tag-amazon-aws"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>AWS ZSH Helper - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"This morning I\u2019m going to go with a new recurring weekly post: Friday Functions! While some of it will aim to share my large inventory of zsh functions\" \/>\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.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AWS ZSH Helper - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"This morning I\u2019m going to go with a new recurring weekly post: Friday Functions! While some of it will aim to share my large inventory of zsh functions\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2016-04-25T14:11:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Carr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Carr\" \/>\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.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/\"},\"author\":{\"name\":\"James Carr\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/9504aaff478a805b152e506abe45ece4\"},\"headline\":\"AWS ZSH Helper\",\"datePublished\":\"2016-04-25T14:11:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/\"},\"wordCount\":283,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg\",\"keywords\":[\"Amazon AWS\"],\"articleSection\":[\"ZSH\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/\",\"name\":\"AWS ZSH Helper - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg\",\"datePublished\":\"2016-04-25T14:11:50+00:00\",\"description\":\"This morning I\u2019m going to go with a new recurring weekly post: Friday Functions! While some of it will aim to share my large inventory of zsh functions\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Shell Scripting\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"ZSH\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/zsh\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"AWS ZSH Helper\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/9504aaff478a805b152e506abe45ece4\",\"name\":\"James Carr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/751c55f22a64fa5ac630c3bddaf1a4f4e11c442aaa9fc308004564cdca64b900?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/751c55f22a64fa5ac630c3bddaf1a4f4e11c442aaa9fc308004564cdca64b900?s=96&d=mm&r=g\",\"caption\":\"James Carr\"},\"sameAs\":[\"http:\/\/blog.james-carr.org\/\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/james-carr\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AWS ZSH Helper - System Code Geeks - 2026","description":"This morning I\u2019m going to go with a new recurring weekly post: Friday Functions! While some of it will aim to share my large inventory of zsh functions","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.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/","og_locale":"en_US","og_type":"article","og_title":"AWS ZSH Helper - System Code Geeks - 2026","og_description":"This morning I\u2019m going to go with a new recurring weekly post: Friday Functions! While some of it will aim to share my large inventory of zsh functions","og_url":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2016-04-25T14:11:50+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg","type":"image\/jpeg"}],"author":"James Carr","twitter_card":"summary_large_image","twitter_creator":"@systemcodegeeks","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"James Carr","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/"},"author":{"name":"James Carr","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/9504aaff478a805b152e506abe45ece4"},"headline":"AWS ZSH Helper","datePublished":"2016-04-25T14:11:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/"},"wordCount":283,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg","keywords":["Amazon AWS"],"articleSection":["ZSH"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/","url":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/","name":"AWS ZSH Helper - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg","datePublished":"2016-04-25T14:11:50+00:00","description":"This morning I\u2019m going to go with a new recurring weekly post: Friday Functions! While some of it will aim to share my large inventory of zsh functions","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/zsh-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/zsh\/aws-zsh-helper\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Shell Scripting","item":"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/"},{"@type":"ListItem","position":3,"name":"ZSH","item":"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/zsh\/"},{"@type":"ListItem","position":4,"name":"AWS ZSH Helper"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/9504aaff478a805b152e506abe45ece4","name":"James Carr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/751c55f22a64fa5ac630c3bddaf1a4f4e11c442aaa9fc308004564cdca64b900?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/751c55f22a64fa5ac630c3bddaf1a4f4e11c442aaa9fc308004564cdca64b900?s=96&d=mm&r=g","caption":"James Carr"},"sameAs":["http:\/\/blog.james-carr.org\/"],"url":"https:\/\/www.systemcodegeeks.com\/author\/james-carr\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/1115","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=1115"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/1115\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/203"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=1115"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=1115"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=1115"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}