{"id":12113,"date":"2014-02-27T15:10:54","date_gmt":"2014-02-27T09:40:54","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=12113"},"modified":"2014-12-17T09:06:19","modified_gmt":"2014-12-17T03:36:19","slug":"using-multiple-iam-accounts-through-aws-cli-tool","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/","title":{"rendered":"Using multiple IAM Accounts through AWS CLI tool"},"content":{"rendered":"<p>AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts.<\/p>\n<p>Prerequisites :<\/p>\n<p>AWS CLI tool<\/p>\n<p>Configuring Multiple Accounts:<\/p>\n<p>When you configure your AWS CLI tool, a configuration file gets created at ~\/.aws\/config in Linux\/Unix or at <code>C:\\Users\\USERNAME\\.aws\\config <\/code>, which looks like:<\/p>\n<p>[code]<br \/>\n[default]<br \/>\naws_access_key_id=AKIAIOSFODNN7EXAMPLE<br \/>\naws_secret_access_key=wJalrXUtnFEMI\/K7MDENG\/bPxRfiCYEXAMPLEKEY<br \/>\naws_security_token=texample123324<br \/>\n[\/code]<\/p>\n<p>This has a default profile , that gets created when you run \u201c aws configure \u201c<\/p>\n<p>Now to create multiple profiles , append the following to your aws configuration file ( ~\/.aws\/config ) :<\/p>\n<p>[code]<br \/>\n[profile test-user]<br \/>\naws_access_key_id=AKIAI44QH8DHBEXAMPLE<br \/>\naws_secret_access_key=je7MtGbClwBF\/2Zp9Utk\/h3yCo8nvbEXAMPLEKEY<br \/>\nregion=us-west-2<br \/>\n[\/code]<\/p>\n<p>Note that you need to append the string \u201cprofile\u201c before the profile name .<\/p>\n<p>Now , whenever you want to use this user , you have to invoke the AWS command with the <code style=\"font-style: inherit\">--profile<\/code>\u00a0command line parameter or else you can set the environment variable AWS_DEFAULT_PROFILE . If this variable does not specify a profile, the AWS CLI uses the profile named <code style=\"font-style: inherit\">default<\/code>.<\/p>\n<p><span style=\"font-family: Liberation Serif,serif\"><span style=\"font-size: medium\"><span style=\"color: #000000\">Example: <\/span><\/span><\/span><\/p>\n<p>[code]aws s3 ls \u2013profile test-user<br \/>\naws s3 ls \u2013profile default[\/code]<\/p>\n<p><strong>Miscellaneous Tips<\/strong><\/p>\n<p>Auto Completion :<br \/>\nTo enable auto completion for you AWS CLI , add the below line in your \/etc\/bashrc file :<\/p>\n<p>[shell]complete -C aws_completer aws[\/shell]<\/p>\n<p>Configuring the command output :<br \/>\nBy default the output of the AWS CLI is json, but it also supports other formats like table and text. To change the default output you can either<\/p>\n<ul>\n<li>Configure the default format in config file :<\/li>\n<\/ul>\n<p>[shell][default]<br \/>\noutput = text[\/shell]<\/p>\n<ul>\n<li>Use the &#8211;output option with the AWS CLI command<\/li>\n<\/ul>\n<p>[shell]aws ec2 describe-instances &#8211;output table[\/shell]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts. Prerequisites : AWS CLI tool Configuring Multiple Accounts: When you configure your AWS CLI tool, a configuration file gets created at ~\/.aws\/config in Linux\/Unix or at C:\\Users\\USERNAME\\.aws\\config , [&hellip;]<\/p>\n","protected":false},"author":108,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":8,"footnotes":""},"categories":[1174],"tags":[248,1342],"class_list":["post-12113","post","type-post","status-publish","format-standard","hentry","category-aws-2","tag-aws","tag-aws-cli"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts. Prerequisites : AWS CLI tool Configuring Multiple Accounts: When you configure your AWS CLI tool, a configuration file gets created at ~\/.aws\/config in Linux\/Unix or at C:\\Users\\USERNAME\\.aws\\config ,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"ravi\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Using multiple IAM Accounts through AWS CLI tool | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts. Prerequisites : AWS CLI tool Configuring Multiple Accounts: When you configure your AWS CLI tool, a configuration file gets created at ~\/.aws\/config in Linux\/Unix or at C:\\Users\\USERNAME\\.aws\\config ,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Using multiple IAM Accounts through AWS CLI tool | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts. Prerequisites : AWS CLI tool Configuring Multiple Accounts: When you configure your AWS CLI tool, a configuration file gets created at ~\/.aws\/config in Linux\/Unix or at C:\\Users\\USERNAME\\.aws\\config ,\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/#article\",\"name\":\"Using multiple IAM Accounts through AWS CLI tool | TO THE NEW Blog\",\"headline\":\"Using multiple IAM Accounts through AWS CLI tool\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2014-02-27T15:10:54+05:30\",\"dateModified\":\"2014-12-17T09:06:19+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/#webpage\"},\"articleSection\":\"AWS, aws, aws cli\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"name\":\"AWS\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"position\":2,\"name\":\"AWS\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/#listItem\",\"name\":\"Using multiple IAM Accounts through AWS CLI tool\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/#listItem\",\"position\":3,\"name\":\"Using multiple IAM Accounts through AWS CLI tool\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"name\":\"AWS\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi\\\/\",\"name\":\"ravi\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d719391371553cf4bfeb541fbb6426fc7ea3854dc9dcaac4da53e4fa1c589fd7?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"ravi\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/\",\"name\":\"Using multiple IAM Accounts through AWS CLI tool | TO THE NEW Blog\",\"description\":\"AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts. Prerequisites : AWS CLI tool Configuring Multiple Accounts: When you configure your AWS CLI tool, a configuration file gets created at ~\\\/.aws\\\/config in Linux\\\/Unix or at C:\\\\Users\\\\USERNAME\\\\.aws\\\\config ,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/using-multiple-iam-accounts-through-aws-cli-tool\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi\\\/#author\"},\"datePublished\":\"2014-02-27T15:10:54+05:30\",\"dateModified\":\"2014-12-17T09:06:19+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Using multiple IAM Accounts through AWS CLI tool | TO THE NEW Blog","description":"AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts. Prerequisites : AWS CLI tool Configuring Multiple Accounts: When you configure your AWS CLI tool, a configuration file gets created at ~\/.aws\/config in Linux\/Unix or at C:\\Users\\USERNAME\\.aws\\config ,","canonical_url":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/#article","name":"Using multiple IAM Accounts through AWS CLI tool | TO THE NEW Blog","headline":"Using multiple IAM Accounts through AWS CLI tool","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/ravi\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2014-02-27T15:10:54+05:30","dateModified":"2014-12-17T09:06:19+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/#webpage"},"articleSection":"AWS, aws, aws cli"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/#listItem","name":"AWS"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/#listItem","position":2,"name":"AWS","item":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/#listItem","name":"Using multiple IAM Accounts through AWS CLI tool"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/#listItem","position":3,"name":"Using multiple IAM Accounts through AWS CLI tool","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/#listItem","name":"AWS"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/ravi\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/ravi\/","name":"ravi","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d719391371553cf4bfeb541fbb6426fc7ea3854dc9dcaac4da53e4fa1c589fd7?s=96&d=mm&r=g","width":96,"height":96,"caption":"ravi"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/","name":"Using multiple IAM Accounts through AWS CLI tool | TO THE NEW Blog","description":"AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts. Prerequisites : AWS CLI tool Configuring Multiple Accounts: When you configure your AWS CLI tool, a configuration file gets created at ~\/.aws\/config in Linux\/Unix or at C:\\Users\\USERNAME\\.aws\\config ,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/ravi\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/ravi\/#author"},"datePublished":"2014-02-27T15:10:54+05:30","dateModified":"2014-12-17T09:06:19+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Using multiple IAM Accounts through AWS CLI tool | TO THE NEW Blog","og:description":"AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts. Prerequisites : AWS CLI tool Configuring Multiple Accounts: When you configure your AWS CLI tool, a configuration file gets created at ~\/.aws\/config in Linux\/Unix or at C:\\Users\\USERNAME\\.aws\\config ,","og:url":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Using multiple IAM Accounts through AWS CLI tool | TO THE NEW Blog","twitter:description":"AWS CLI tool allows you to switch between multiple IAM accounts. This becomes very handy while you are writing a script that involves multiple IAM user accounts. Prerequisites : AWS CLI tool Configuring Multiple Accounts: When you configure your AWS CLI tool, a configuration file gets created at ~\/.aws\/config in Linux\/Unix or at C:\\Users\\USERNAME\\.aws\\config ,","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"12113","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 08:03:11","updated":"2024-02-29 08:57:32","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/\" title=\"AWS\">AWS<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tUsing multiple IAM Accounts through AWS CLI tool\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"AWS","link":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/"},{"label":"Using multiple IAM Accounts through AWS CLI tool","link":"https:\/\/2thenew.xyz\/blog\/using-multiple-iam-accounts-through-aws-cli-tool\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/12113","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/108"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=12113"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/12113\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=12113"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=12113"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=12113"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}