{"id":8179,"date":"2015-09-22T17:46:45","date_gmt":"2015-09-22T17:46:45","guid":{"rendered":"https:\/\/xpon.ai\/resources\/time-before-transaction-in-google-analytics\/"},"modified":"2023-08-01T07:48:59","modified_gmt":"2023-08-01T07:48:59","slug":"time-before-transaction-in-google-analytics","status":"publish","type":"post","link":"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/","title":{"rendered":"Time to Transaction in Google Analytics"},"content":{"rendered":"<div class=\"blog-post__cta\">\n<div class=\"row\">\n<div class=\"blog-post__cta-wrapper\">\n<div class=\"col-12 col-md-8 offset-md-2\">\n<div class=\"blog-post__cta-holder\">\n<p>As of March 16th, 2022, Google announced that the mainstream version of Google Analytics labeled \u201cUniversal Analytics\u201d will be deprecated in July 2023, with Google Analytics (360) enterprise depreciating in October 2023, presenting Google Analytics 4 (GA4) as the future of the platform.<\/p>\n<p>To find out more, download our up-to-date guide to GA4 and Privacy-First Measurement.<\/p>\n<div class=\"blog-post__cta-button\">\n<p><a class=\"button primary\" href=\"https:\/\/www.mkt-aunz.xpon.ai\/GA4-whitepaper\" target=\"_blank\" rel=\"noopener\">Download Our GA4 guide.<\/a><\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<h4><strong>Time to Transaction?<\/strong><\/h4>\n<p class=\"captionImage leftAlone\">We all put lots of effort into improving conversions on our website or mobile app traffic. To accomplish that we need to better understand our customers, our conversion path flow, abandonment and struggle points. The more information we have, the better. And this includes time to transaction (or conversion) on our website.<\/p>\n<p><img decoding=\"async\" class=\"leftAlone aligncenter\" title=\"Google Analytics time to purchase, Sessions to Transaction\" src=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/ResizedImage420151-Time-to-Purchase-Google-Analytics-Mozilla-Firefox-2015-09-23-17-32-08.png\" alt=\"Time_to_Transaction_in_Google_Analytics_image_1\" width=\"420\" height=\"151\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Google Analytics, out of the box gives us invaluable information such as a number of sessions before transactions and the number of days before conversions. This gives data-supported insight into how keen our customers are. Is the purchase an impulsive act or well thought-through decision? Do people tend to research the market before <em>committing<\/em> to the brand or just convert immediately?<\/p>\n<p class=\"captionImage leftAlone\">But why is time to transaction so important?<\/p>\n<p class=\"captionImage leftAlone\">Why do we measure the minutes or seconds (lucky you if it&#8217;s just seconds) before the conversion happened? Here are a few analytics questions where such metrics would be invaluable:<\/p>\n<blockquote><p>How much of the content was consumed prior to the purchase decision? Was the visitor convinced within the first half OR did they need to read to the bottom of the page to satisfy their decision?<\/p>\n<p>&nbsp;<\/p>\n<p>How long is it taking my visitors to get through the content? Is it a quick process or long process?<\/p>\n<p>&nbsp;<\/p>\n<p>If it is taking visitors a long time for what should be a simple process &#8211; does this indicate that there are issues\/hurdles in the process which need to be rectified?<\/p>\n<p>&nbsp;<\/p>\n<p>How long does it take for my customers to complete the checkout process?<\/p><\/blockquote>\n<p>I am sure you can think of a couple more.<\/p>\n<p>Well &#8211; Google Analytics is not going to help us with time to transaction. The Goal Funnel in GA is not recording time and you can&#8217;t create a funnel for an Event-based Goal.<\/p>\n<p>We, at XPON, believe that if you need some specific data &#8211; you should have it! It&#8217;s doable, we just need to get a little bit technical.<\/p>\n<p>Luckily, Google Analytics has customisable <a href=\"https:\/\/support.google.com\/analytics\/answer\/1205784?hl=en&amp;vid=1-635785920757255787-2931606664#UserTimings&amp;zippy=%2Cin-this-article\">User Timing reports<\/a> and <a href=\"https:\/\/developers.google.com\/analytics\/devguides\/collection\/analyticsjs\/user-timings?hl=en\">Timing Hit Type<\/a> which can deliver user-specified timing value to Google Analytics. The timing works pretty much like Google Analytics Events &#8211; you send a timing hit (instead of the\u00a0event) together with Category, Variable, Label, and time as a value.<\/p>\n<p><strong>Timing Category<\/strong> &#8211; Conversion or Transaction or anything else you see fit<br \/>\n<strong>Timing Variable<\/strong> &#8211; Completed or Reached Step 1 or 2 or 3 of the conversion pathway<br \/>\n<strong>Timing Label<\/strong> &#8211; Product Name or Conversion (Goal) Name<br \/>\n<strong>Timing Value<\/strong> &#8211; time passed in milliseconds<\/p>\n<p class=\"captionImage leftAlone\">As you can see, it&#8217;s pretty flexible and you can fit lots of data in these 4 fields. All you need is to &#8220;remember&#8221; the time when the current session has started and send a GA timing hit when the transaction or conversion happened.<\/p>\n<p>If you are taking tagging seriously (like me), then you are using a tag manager solution (for example Google Tag Manager) to collect analytics data.<\/p>\n<p>Let&#8217;s do this!<\/p>\n<h4>1. Create 1st Party Cookie Variable to store the session start timestamp<\/h4>\n<p>In my example I named the cookie ****<em>_time2conversion_sesson_start<\/em>. But you can name the cookie whatever you like.<\/p>\n<p>&nbsp;<\/p>\n<h4>2. Create Trigger for Session Start<\/h4>\n<p>On session start we will save the current timestamp to the cookie and timestamps usually contain numbers. So our trigger checks if the cookie is not empty and contains digits.<\/p>\n<p>&nbsp;<\/p>\n<h4>3. Create Tag, making sure to write session start time to cookie (very important)<\/h4>\n<p>&nbsp;<\/p>\n<h4>4. Use the Session Start Trigger you just created to fire this Tag, so it will only fire when the cookie has no value (first hit of the session)<\/h4>\n<p>&nbsp;<\/p>\n<h4>5. Create a Variable returning time since Session Start in milliseconds<\/h4>\n<p>&nbsp;<\/p>\n<h4>6. Google Analytics Transaction Timing Tag using Track Type as Timing.<\/h4>\n<p>Name your timing Variable <em>Completed<\/em>, Category <em>Transaction<\/em> and Label leave empty for now.<\/p>\n<p>Use your just created Variable <em>**** &#8211; Time Since Session Started<\/em> as a timing value.<\/p>\n<p><strong>Fire this tag on your conversion page.<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p class=\"captionImage leftAlone\">Now, what could possibly go wrong with that implementation? Honestly? A lot! Cookies are not the best place to save data such as this as cookies are being sent with every page request.<\/p>\n<p class=\"captionImage leftAlone\">A better way of doing so would be leveraging the browsers&#8217;\u00a0sessionStorage object.<\/p>\n<p>However, not every browser supports this so that&#8217;s why we need to fall back to using a cookie.<\/p>\n<p>The current implementation is not robust enough &#8211; it just solves razor task of tracking session time to conversion. But what if we want to know the time from the first user touchpoint? What if we need to measure timing on each checkout step? We will have to modify our implementation to be more universal or repeat it again and again.<\/p>\n<p>As you have noticed, we have left the Timing Label variable unused. It can be used to break down timing reports by product name or category, selected payment options, delivery etc. You can even measure how long it takes for the processing centre to process payment.<\/p>\n<p class=\"captionImage leftAlone\">The beauty of Google Analytics is that Timing data is placed into the right content of page, session, and user.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As of March 16th, 2022, Google announced that the mainstream version of Google Analytics labeled \u201cUniversal Analytics\u201d will be deprecated in July 2023, with Google Analytics (360) enterprise depreciating in October 2023, presenting Google Analytics 4 (GA4) as the future of the platform. To find out more, download our up-to-date guide to GA4 and Privacy-First [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":5400,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"Time to Transaction","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"Time to transaction is important to measure the minutes or seconds before a conversion happened - XPON Technologies","_yoast_wpseo_meta-robots-noindex":"","_yoast_wpseo_meta-robots-nofollow":"","_yoast_wpseo_canonical":"","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[389],"tags":[452],"class_list":["post-8179","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog-au","tag-marketing-technology-au"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.2 (Yoast SEO v21.4) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Time to Transaction in Google Analytics | XPON Technologies | XPON Australia<\/title>\n<meta name=\"description\" content=\"Time to transaction is important to measure the minutes or seconds before a conversion happened - XPON Technologies | XPON Australia\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/posts\/8179\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Time to Transaction in Google Analytics | XPON Australia\" \/>\n<meta property=\"og:description\" content=\"Time to transaction is important to measure the minutes or seconds before a conversion happened - XPON Technologies | XPON Australia\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/\" \/>\n<meta property=\"og:site_name\" content=\"XPON Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/xpongroup\/\" \/>\n<meta property=\"article:published_time\" content=\"2015-09-22T17:46:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-01T07:48:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/change.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1845\" \/>\n\t<meta property=\"og:image:height\" content=\"1045\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"XPON Technologies Group\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xpontech\" \/>\n<meta name=\"twitter:site\" content=\"@xpontech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XPON Technologies Group\" \/>\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:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/\"},\"author\":{\"name\":\"XPON Technologies Group\",\"@id\":\"https:\/\/xpon.ai\/au\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1\"},\"headline\":\"Time to Transaction in Google Analytics\",\"datePublished\":\"2015-09-22T17:46:45+00:00\",\"dateModified\":\"2023-08-01T07:48:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/\"},\"wordCount\":916,\"publisher\":{\"@id\":\"https:\/\/xpon.ai\/au\/#organization\"},\"keywords\":[\"Marketing Technology\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-AU\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/\",\"url\":\"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/\",\"name\":\"Time to Transaction in Google Analytics | XPON Technologies\",\"isPartOf\":{\"@id\":\"https:\/\/xpon.ai\/au\/#website\"},\"datePublished\":\"2015-09-22T17:46:45+00:00\",\"dateModified\":\"2023-08-01T07:48:59+00:00\",\"description\":\"Time to transaction is important to measure the minutes or seconds before a conversion happened - XPON Technologies\",\"breadcrumb\":{\"@id\":\"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/#breadcrumb\"},\"inLanguage\":\"en-AU\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xpon.ai\/au\/?page_id=2678\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Time to Transaction in Google Analytics\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xpon.ai\/au\/#website\",\"url\":\"https:\/\/xpon.ai\/au\/\",\"name\":\"XPON Technologies\",\"description\":\"Technology &amp; cloud solutions to modernise marketing operations\",\"publisher\":{\"@id\":\"https:\/\/xpon.ai\/au\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xpon.ai\/au\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-AU\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xpon.ai\/au\/#organization\",\"name\":\"XPON Technologies\",\"alternateName\":\"XPON\",\"url\":\"https:\/\/xpon.ai\/au\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-AU\",\"@id\":\"https:\/\/xpon.ai\/au\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png\",\"contentUrl\":\"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png\",\"width\":212,\"height\":212,\"caption\":\"XPON Technologies\"},\"image\":{\"@id\":\"https:\/\/xpon.ai\/au\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/xpongroup\/\",\"https:\/\/twitter.com\/xpontech\",\"https:\/\/www.youtube.com\/@xpon\/videos\",\"https:\/\/au.linkedin.com\/company\/xpon-technologies\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xpon.ai\/au\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1\",\"name\":\"XPON Technologies Group\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-AU\",\"@id\":\"https:\/\/xpon.ai\/au\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g\",\"caption\":\"XPON Technologies Group\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Time to Transaction in Google Analytics | XPON Technologies | XPON Australia","description":"Time to transaction is important to measure the minutes or seconds before a conversion happened - XPON Technologies | XPON Australia","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:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/posts\/8179","og_locale":"en_US","og_type":"article","og_title":"Time to Transaction in Google Analytics | XPON Australia","og_description":"Time to transaction is important to measure the minutes or seconds before a conversion happened - XPON Technologies | XPON Australia","og_url":"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/","og_site_name":"XPON Technologies","article_publisher":"https:\/\/www.facebook.com\/xpongroup\/","article_published_time":"2015-09-22T17:46:45+00:00","article_modified_time":"2023-08-01T07:48:59+00:00","og_image":[{"width":1845,"height":1045,"url":"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/change.jpg","type":"image\/jpeg"}],"author":"XPON Technologies Group","twitter_card":"summary_large_image","twitter_creator":"@xpontech","twitter_site":"@xpontech","twitter_misc":{"Written by":"XPON Technologies Group","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/#article","isPartOf":{"@id":"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/"},"author":{"name":"XPON Technologies Group","@id":"https:\/\/xpon.ai\/au\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1"},"headline":"Time to Transaction in Google Analytics","datePublished":"2015-09-22T17:46:45+00:00","dateModified":"2023-08-01T07:48:59+00:00","mainEntityOfPage":{"@id":"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/"},"wordCount":916,"publisher":{"@id":"https:\/\/xpon.ai\/au\/#organization"},"keywords":["Marketing Technology"],"articleSection":["Blog"],"inLanguage":"en-AU"},{"@type":"WebPage","@id":"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/","url":"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/","name":"Time to Transaction in Google Analytics | XPON Technologies","isPartOf":{"@id":"https:\/\/xpon.ai\/au\/#website"},"datePublished":"2015-09-22T17:46:45+00:00","dateModified":"2023-08-01T07:48:59+00:00","description":"Time to transaction is important to measure the minutes or seconds before a conversion happened - XPON Technologies","breadcrumb":{"@id":"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/#breadcrumb"},"inLanguage":"en-AU","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/xpon.ai\/au\/resources\/time-before-transaction-in-google-analytics\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xpon.ai\/au\/?page_id=2678"},{"@type":"ListItem","position":2,"name":"Time to Transaction in Google Analytics"}]},{"@type":"WebSite","@id":"https:\/\/xpon.ai\/au\/#website","url":"https:\/\/xpon.ai\/au\/","name":"XPON Technologies","description":"Technology &amp; cloud solutions to modernise marketing operations","publisher":{"@id":"https:\/\/xpon.ai\/au\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xpon.ai\/au\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-AU"},{"@type":"Organization","@id":"https:\/\/xpon.ai\/au\/#organization","name":"XPON Technologies","alternateName":"XPON","url":"https:\/\/xpon.ai\/au\/","logo":{"@type":"ImageObject","inLanguage":"en-AU","@id":"https:\/\/xpon.ai\/au\/#\/schema\/logo\/image\/","url":"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png","contentUrl":"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png","width":212,"height":212,"caption":"XPON Technologies"},"image":{"@id":"https:\/\/xpon.ai\/au\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/xpongroup\/","https:\/\/twitter.com\/xpontech","https:\/\/www.youtube.com\/@xpon\/videos","https:\/\/au.linkedin.com\/company\/xpon-technologies"]},{"@type":"Person","@id":"https:\/\/xpon.ai\/au\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1","name":"XPON Technologies Group","image":{"@type":"ImageObject","inLanguage":"en-AU","@id":"https:\/\/xpon.ai\/au\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g","caption":"XPON Technologies Group"}}]}},"_links":{"self":[{"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/posts\/8179","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/comments?post=8179"}],"version-history":[{"count":0,"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/posts\/8179\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/media\/5400"}],"wp:attachment":[{"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/media?parent=8179"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/categories?post=8179"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xpon.ai\/au\/wp-json\/wp\/v2\/tags?post=8179"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}