{"id":662,"date":"2017-01-07T13:04:40","date_gmt":"2017-01-07T09:04:40","guid":{"rendered":"https:\/\/optimizationup.com\/?p=662"},"modified":"2021-03-03T18:08:48","modified_gmt":"2021-03-03T14:08:48","slug":"adwords-scripts-check-expanded-text-ads","status":"publish","type":"post","link":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/","title":{"rendered":"Google Ads Script to Check Ad Groups without Expanded Text Ads"},"content":{"rendered":"<p><a href=\"https:\/\/optimizationup.com\/tag\/adwords\">AdWords<\/a>\u00a0no longer supports the standard text ads, any new text ads generated should use the expanded text ad format. So, if you haven&#8217;t made a\u00a0full transition, you actually need to hurry up and migrate all of your standard ads to the new expanded text ads.<\/p>\n<p>Today, we developed a new simple <a href=\"https:\/\/optimizationup.com\/tag\/adwords-scripts\">AdWords script<\/a> that you might find it helpful in your\u00a0transition from STAs to ETAs.\u00a0The script checks all the ad groups in all the accounts that:<\/p>\n<p># Have no expanded text ads.<br \/>\n# Have less than two expanded text ads.<br \/>\n# Still have active standard text ads.<\/p>\n<p>The script then returns a full report with the campaigns and ad groups that meet the above criteria in a spreadsheet.<\/p>\n<p>You can install the script on either a manager account or a single account.\u00a0For the MCC version, to ensure processing doesn&#8217;t exceed limits, we recommend running the script on a maximum of 50 accounts at a time.<\/p>\n<h5>ETA Checker-MCC Script<\/h5>\n<p>Here&#8217;s the source code for the MCC script, just make sure to replace the spreadsheet URL with your sheet&#8217;s URL:-<\/p>\n<pre>\/**********************\nETA Cheacker\nCreated by Ahmed Ali, https:\/\/optimizationup.com\nMCC Version 1.0\n**********************\/\n\nvar SPREADSHEET_URL = 'https:\/\/docs.google.com\/spreadsheets\/d\/1x7J5vfen1D2AQNVGg3pjOae33VCkDhOXOEQ-FzJ_K0I\/edit#gid=0';\nvar sheet = SpreadsheetApp.openByUrl(SPREADSHEET_URL).getActiveSheet();\nvar account = MccApp.accounts().get();\n\nfunction main() { \n sheet.clearContents(); \n sheet.getRange(\"A1\").setValue(\"Account ID\");\n sheet.getRange(\"B1\").setValue(\"Account Name\");\n sheet.getRange(\"C1\").setValue(\"Campaign\");\n sheet.getRange(\"D1\").setValue(\"Ad groups\");\n sheet.getRange(\"E1\").setValue(\"ETA Count\");\n sheet.getRange(\"F1\").setValue(\"Text Ads Count\");\nvar accountIterator = MccApp.accounts().executeInParallel('ETA');\n}\n\nfunction ETA() {\n var GetAdGroups = AdWordsApp.adGroups()\n .withCondition('Status = ENABLED')\n .withCondition(\"CampaignName DOES_NOT_CONTAIN_IGNORE_CASE 'dsa'\")\n .withCondition(\"AdvertisingChannelType = SEARCH\")\n .withCondition('CampaignStatus = ENABLED')\n .get();\n\n for (var row = 2; GetAdGroups.hasNext(); row ++) { \nvar AdGroups = GetAdGroups.next();\n var TextadCount = AdGroups.ads().withCondition('Type=TEXT_AD').withCondition('Status = ENABLED').get().totalNumEntities();\n var ETACount = AdGroups.ads().withCondition('Type=EXPANDED_TEXT_AD').withCondition('Status = ENABLED').get().totalNumEntities();\nif ((TextadCount &gt; 0) || (ETACount &lt; 2)) {\n sheet.appendRow( [AdWordsApp.currentAccount().getCustomerId(),AdWordsApp.currentAccount().getName(), AdGroups.getCampaign().getName(), AdGroups.getName(), ETACount ,TextadCount] );\n}\n } \n}\n<\/pre>\n<h5>ETA Checker-Single Account Script<\/h5>\n<p>Here&#8217;s also the single account version, please also make sure to replace the spreadsheet URL with your sheet&#8217;s URL:-<\/p>\n<pre>\/**********************\nETA Cheacker\nCreated by Ahmed Ali, https:\/\/optimizationup.com\nSingle Account Version 1.0\n**********************\/\n\nvar SPREADSHEET_URL = 'https:\/\/docs.google.com\/spreadsheets\/d\/XXXXXXXXXXXXXX\/edit#gid=0';\n\nfunction main() {\n var sheet = SpreadsheetApp.openByUrl(SPREADSHEET_URL).getActiveSheet();\n sheet.clearContents(); \n sheet.getRange(\"A1\").setValue(\"Campaign\");\n sheet.getRange(\"B1\").setValue(\"Ad groups\");\n sheet.getRange(\"C1\").setValue(\"ETA Count\");\n sheet.getRange(\"D1\").setValue(\"Text Ads Count\");\n\n var GetAdGroups = AdWordsApp.adGroups()\n .withCondition('Status = ENABLED')\n .withCondition('CampaignStatus = ENABLED')\n .withCondition(\"AdvertisingChannelType = SEARCH\")\n .withCondition(\"CampaignName DOES_NOT_CONTAIN_IGNORE_CASE 'dsa'\")\n .get();\n\n for (var row = 2; GetAdGroups.hasNext(); row ++) { \n var AdGroups = GetAdGroups.next();\n var TextadCount = AdGroups.ads().withCondition('Type=TEXT_AD').withCondition('Status = ENABLED').get().totalNumEntities();\n var ETACount = AdGroups.ads().withCondition('Type=EXPANDED_TEXT_AD').withCondition('Status = ENABLED').get().totalNumEntities();\n\n if ((TextadCount &gt; 1) || (ETACount &lt; 2)) {\n\n sheet.appendRow( [AdGroups.getCampaign().getName(), AdGroups.getName(), ETACount ,TextadCount] );\n\n }\n } \n}\n<\/pre>\n<p>Feel free to drop us a comment below\u00a0if you have any question or a problem regarding the <a href=\"https:\/\/optimizationup.com\/tag\/adwords-scripts\">AdWords script<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AdWords\u00a0no longer supports the standard text ads, any new text ads generated should use the expanded text ad format. So, if you haven&#8217;t made a\u00a0full transition, you actually need to hurry up and migrate all of your standard ads to the new expanded text ads. Today, we developed a new simple AdWords script that you&#8230;<\/p>\n<p><a class=\"read-more\" href=\"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":1441,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[34],"tags":[33,44],"class_list":["post-662","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-optimize","tag-google-ads","tag-google-ads-scripts"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Google Ads Script to Check Ad Groups without Expanded Text Ads | Optimization Up<\/title>\n<meta name=\"description\" content=\"Starting January 31, 2017, AdWords will no longer support the standard text ads. Any new text ads generated after that date should use the expanded text ads\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Google Ads Script to Check Ad Groups without Expanded Text Ads | Optimization Up\" \/>\n<meta property=\"og:description\" content=\"Starting January 31, 2017, AdWords will no longer support the standard text ads. Any new text ads generated after that date should use the expanded text ads\" \/>\n<meta property=\"og:url\" content=\"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/\" \/>\n<meta property=\"og:site_name\" content=\"Optimization Up\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/A7med.3lii\" \/>\n<meta property=\"article:published_time\" content=\"2017-01-07T09:04:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-03T14:08:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/optimizationup.com\/wp-content\/uploads\/2017\/03\/Google-Ads-Script.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"466\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ahmed Ali\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@A7med_3ly\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ahmed Ali\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/\"},\"author\":{\"name\":\"Ahmed Ali\",\"@id\":\"https:\\\/\\\/optimizationup.com\\\/#\\\/schema\\\/person\\\/75b8aaa058bc4d0630cc7e138840f768\"},\"headline\":\"Google Ads Script to Check Ad Groups without Expanded Text Ads\",\"datePublished\":\"2017-01-07T09:04:40+00:00\",\"dateModified\":\"2021-03-03T14:08:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/\"},\"wordCount\":241,\"commentCount\":4,\"image\":{\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/optimizationup.com\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/Google-Ads-Script.png\",\"keywords\":[\"Google Ads\",\"Google Ads Scripts\"],\"articleSection\":[\"Optimize\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/\",\"url\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/\",\"name\":\"Google Ads Script to Check Ad Groups without Expanded Text Ads | Optimization Up\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/optimizationup.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/optimizationup.com\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/Google-Ads-Script.png\",\"datePublished\":\"2017-01-07T09:04:40+00:00\",\"dateModified\":\"2021-03-03T14:08:48+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/optimizationup.com\\\/#\\\/schema\\\/person\\\/75b8aaa058bc4d0630cc7e138840f768\"},\"description\":\"Starting January 31, 2017, AdWords will no longer support the standard text ads. Any new text ads generated after that date should use the expanded text ads\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/#primaryimage\",\"url\":\"https:\\\/\\\/optimizationup.com\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/Google-Ads-Script.png\",\"contentUrl\":\"https:\\\/\\\/optimizationup.com\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/Google-Ads-Script.png\",\"width\":1200,\"height\":466},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/optimizationup.com\\\/adwords-scripts-check-expanded-text-ads\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/optimizationup.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Google Ads Script to Check Ad Groups without Expanded Text Ads\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/optimizationup.com\\\/#website\",\"url\":\"https:\\\/\\\/optimizationup.com\\\/\",\"name\":\"Optimization Up\",\"description\":\"Advanced Optimization &amp; Analytics Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/optimizationup.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/optimizationup.com\\\/#\\\/schema\\\/person\\\/75b8aaa058bc4d0630cc7e138840f768\",\"name\":\"Ahmed Ali\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/68727300a58d1891a3dda2e17e66e7ebd42c80226d3006db77b4814bc14d4d43?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/68727300a58d1891a3dda2e17e66e7ebd42c80226d3006db77b4814bc14d4d43?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/68727300a58d1891a3dda2e17e66e7ebd42c80226d3006db77b4814bc14d4d43?s=96&d=mm&r=g\",\"caption\":\"Ahmed Ali\"},\"description\":\"Entrepreneur focused on building MarTech products that bridge the gap between marketing and technology. Check out my latest products Markifact,\u00a0 Marketing Auditor &amp; GA4 Auditor - discover all my products here.\",\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/A7med.3lii\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/a7med-ali\\\/\",\"https:\\\/\\\/x.com\\\/A7med_3ly\"],\"url\":\"https:\\\/\\\/optimizationup.com\\\/author\\\/a7med\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Google Ads Script to Check Ad Groups without Expanded Text Ads | Optimization Up","description":"Starting January 31, 2017, AdWords will no longer support the standard text ads. Any new text ads generated after that date should use the expanded text ads","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:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/","og_locale":"en_US","og_type":"article","og_title":"Google Ads Script to Check Ad Groups without Expanded Text Ads | Optimization Up","og_description":"Starting January 31, 2017, AdWords will no longer support the standard text ads. Any new text ads generated after that date should use the expanded text ads","og_url":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/","og_site_name":"Optimization Up","article_author":"https:\/\/www.facebook.com\/A7med.3lii","article_published_time":"2017-01-07T09:04:40+00:00","article_modified_time":"2021-03-03T14:08:48+00:00","og_image":[{"width":1200,"height":466,"url":"https:\/\/optimizationup.com\/wp-content\/uploads\/2017\/03\/Google-Ads-Script.png","type":"image\/png"}],"author":"Ahmed Ali","twitter_card":"summary_large_image","twitter_creator":"@A7med_3ly","twitter_misc":{"Written by":"Ahmed Ali","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/#article","isPartOf":{"@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/"},"author":{"name":"Ahmed Ali","@id":"https:\/\/optimizationup.com\/#\/schema\/person\/75b8aaa058bc4d0630cc7e138840f768"},"headline":"Google Ads Script to Check Ad Groups without Expanded Text Ads","datePublished":"2017-01-07T09:04:40+00:00","dateModified":"2021-03-03T14:08:48+00:00","mainEntityOfPage":{"@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/"},"wordCount":241,"commentCount":4,"image":{"@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/#primaryimage"},"thumbnailUrl":"https:\/\/optimizationup.com\/wp-content\/uploads\/2017\/03\/Google-Ads-Script.png","keywords":["Google Ads","Google Ads Scripts"],"articleSection":["Optimize"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/","url":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/","name":"Google Ads Script to Check Ad Groups without Expanded Text Ads | Optimization Up","isPartOf":{"@id":"https:\/\/optimizationup.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/#primaryimage"},"image":{"@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/#primaryimage"},"thumbnailUrl":"https:\/\/optimizationup.com\/wp-content\/uploads\/2017\/03\/Google-Ads-Script.png","datePublished":"2017-01-07T09:04:40+00:00","dateModified":"2021-03-03T14:08:48+00:00","author":{"@id":"https:\/\/optimizationup.com\/#\/schema\/person\/75b8aaa058bc4d0630cc7e138840f768"},"description":"Starting January 31, 2017, AdWords will no longer support the standard text ads. Any new text ads generated after that date should use the expanded text ads","breadcrumb":{"@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/#primaryimage","url":"https:\/\/optimizationup.com\/wp-content\/uploads\/2017\/03\/Google-Ads-Script.png","contentUrl":"https:\/\/optimizationup.com\/wp-content\/uploads\/2017\/03\/Google-Ads-Script.png","width":1200,"height":466},{"@type":"BreadcrumbList","@id":"https:\/\/optimizationup.com\/adwords-scripts-check-expanded-text-ads\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/optimizationup.com\/"},{"@type":"ListItem","position":2,"name":"Google Ads Script to Check Ad Groups without Expanded Text Ads"}]},{"@type":"WebSite","@id":"https:\/\/optimizationup.com\/#website","url":"https:\/\/optimizationup.com\/","name":"Optimization Up","description":"Advanced Optimization &amp; Analytics Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/optimizationup.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/optimizationup.com\/#\/schema\/person\/75b8aaa058bc4d0630cc7e138840f768","name":"Ahmed Ali","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/68727300a58d1891a3dda2e17e66e7ebd42c80226d3006db77b4814bc14d4d43?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/68727300a58d1891a3dda2e17e66e7ebd42c80226d3006db77b4814bc14d4d43?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/68727300a58d1891a3dda2e17e66e7ebd42c80226d3006db77b4814bc14d4d43?s=96&d=mm&r=g","caption":"Ahmed Ali"},"description":"Entrepreneur focused on building MarTech products that bridge the gap between marketing and technology. Check out my latest products Markifact,\u00a0 Marketing Auditor &amp; GA4 Auditor - discover all my products here.","sameAs":["https:\/\/www.facebook.com\/A7med.3lii","https:\/\/www.linkedin.com\/in\/a7med-ali\/","https:\/\/x.com\/A7med_3ly"],"url":"https:\/\/optimizationup.com\/author\/a7med\/"}]}},"_links":{"self":[{"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/posts\/662","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/comments?post=662"}],"version-history":[{"count":1,"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/posts\/662\/revisions"}],"predecessor-version":[{"id":1457,"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/posts\/662\/revisions\/1457"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/media\/1441"}],"wp:attachment":[{"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/media?parent=662"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/categories?post=662"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/optimizationup.com\/wp-json\/wp\/v2\/tags?post=662"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}