{"id":19888,"date":"2024-09-17T10:42:55","date_gmt":"2024-09-17T08:42:55","guid":{"rendered":"https:\/\/www.transparentedge.eu\/blog\/"},"modified":"2024-09-17T12:10:30","modified_gmt":"2024-09-17T10:10:30","slug":"optimize-images-in-real-time","status":"publish","type":"post","link":"https:\/\/www.transparentedge.eu\/en\/blog\/optimize-images-in-real-time\/","title":{"rendered":"Settings to optimize images in real time with i3"},"content":{"rendered":"\n<p>Images play a vital role in improving user experience on websites and apps. However, they can also negatively impact performance if not managed properly. That&#8217;s where <a href=\"https:\/\/www.transparentedge.eu\/en\/content-delivery-cdn\/i3\/\">i3, Transparent Edge&#8217;s on-the-fly image optimization solution<\/a>, comes into play.<\/p>\n\n\n\n<p>In this blog post, we&#8217;ll give you some tips on how to set up and tune i3 to optimize your images, reduce bandwidth, and improve loading speed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. JPG image quality adjustment\u00a0<\/h3>\n\n\n\n<p>The first step to optimize your images is to adjust their quality. i3 allows you to do this dynamically, by adjusting the quality level of JPG images via the <em><code>TCDN-i3-transform header<\/code><\/em>. To reduce image size without sacrificing too much visual quality, you can define a percentage that will be applied to all images served from your domain.<\/p>\n\n\n\n<p><em>VCL configuration example:<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n    if (req.http.host == \"www.mi-dominio.es\") {\n        if (req.url ~ \"^\/estaticos\/imagenes\/\") {\n            if (urlplus.get_extension() ~ \"(?i)(jpe?g)\") {\n                set req.http.TCDN-i3-transform = \"quality:75%\";\n            }\n         }\n     }\n}<\/code><\/pre>\n\n\n\n<p>This example reduces the quality of JPG images to 75%, optimizing bandwidth usage and speeding up delivery.<br><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Automatic conversion to WebP<\/h3>\n\n\n\n<p>WebP is a modern image format that offers better compression without losing visual quality. i3 can dynamically convert your images to WebP, provided the user&#8217;s browser supports it. This transformation is performed automatically by detecting the <em><code>Accept: image\/WebP<\/code><\/em> header.<\/p>\n\n\n\n<p><em>VCL configuration example:<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n    if (req.http.host == \"www.mi-dominio.es\") {\n        set req.http.TCDN-i3-transform = \"auto_webp\";\n    }\n}\n<\/code><\/pre>\n\n\n\n<p>Additionally, you can adjust the quality of <a href=\"https:\/\/en.wikipedia.org\/wiki\/WebP\" target=\"_blank\" rel=\"noreferrer noopener\">WebP images<\/a> using the following format: <em><code>auto_webp:&lt;percentage>%<\/code><\/em>. If you do not define a percentage, a default value of 80% will be applied.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Setting the maximum image size<\/h3>\n\n\n\n<p>Another crucial option for optimizing images is limiting their maximum size. This is useful to prevent high-resolution, large images from affecting the speed of your website. i3 allows you to restrict size via the <em><code>TCDN-i3-transform<\/code><\/em> header, applying a progressive degradation of quality until the defined limit is reached.<\/p>\n\n\n\n<p><em>Configuration example in VLC to limit to 1 Mb:<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n    if (req.http.host == \"www.mi-dominio.es\") {\n        if (req.url ~ \"^\/estaticos\/imagenes\/\") {\n            set req.http.TCDN-i3-transform = \"max_length:1m\";\n        }\n    }\n}\n<\/code><\/pre>\n\n\n\n<p>This way, images won&#8217;t exceed 1MB in size, which optimizes the overall performance of your site.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Smart cropping and strips<\/h3>\n\n\n\n<p>i3 also offers advanced features such as smart cropping, which adjusts the dimensions of the image according to the parameters you set, ensuring that the image does not exceed the defined limits.<\/p>\n\n\n\n<p>In addition, you can use <em>strips<\/em>, an overlay technique that allows you to composite images from an original, which is useful for creating versions adapted to different needs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why use i3 for image optimization?<\/h3>\n\n\n\n<p>Optimizing images on the fly not only <a href=\"https:\/\/www.transparentedge.eu\/blog\/como-optimizar-imagenes-para-web\/\">improves user experience<\/a>, but also significantly reduces CDN costs, decreases bandwidth usage, and improves search engine rankings by speeding up your websites&#8217; loading times. <\/p>\n\n\n\n<p>By transforming images directly at the edge, the latency caused by multiple requests to the origin server is eliminated, further reducing response times. This not only results in faster loading of content, but also higher user satisfaction and better SEO results. In short, better Core Web Vitals.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Easy integration and personalized support<\/h3>\n\n\n\n<p>Our <a href=\"https:\/\/www.transparentedge.eu\/en\/content-delivery-cdn\/i3\/\">i3 image optimizer<\/a> is easily integrated with any CDN. Through our API, you can quickly implement changes and start optimizing your images with just a few tweaks to your configuration.<\/p>\n\n\n\n<p>If you need help or have any questions, feel free to contact one of Transparent Edge&#8217;s experts. You can open a ticket in your dashboard or send an email to <a href=\"mailto:help+cdn@transparentedge.eu\">help+cdn@transparentedge.eu<\/a>. We&#8217;ll be happy to help!<br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recommendations for configuring and tuning i3 to optimize your images, reduce bandwidth, and improve loading speed<\/p>\n","protected":false},"author":18,"featured_media":19586,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[7],"tags":[],"class_list":["post-19888","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Settings to optimize images in real time with i3 - Transparent Edge<\/title>\n<meta name=\"description\" content=\"Recommendations for configuring and tuning i3 to optimize your images, reduce bandwidth, and improve loading speed\" \/>\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.transparentedge.eu\/blog\/optimize-images-in-real-time\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Settings to optimize images in real time with i3 - Transparent Edge\" \/>\n<meta property=\"og:description\" content=\"Recommendations for configuring and tuning i3 to optimize your images, reduce bandwidth, and improve loading speed\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/\" \/>\n<meta property=\"og:site_name\" content=\"Transparent Edge\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-17T08:42:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-17T10:10:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2021\/03\/TE-OG-12.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"627\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sonia Ar\u00e9valo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tedgeservices\" \/>\n<meta name=\"twitter:site\" content=\"@tedgeservices\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/\"},\"author\":{\"name\":\"Sonia Ar\u00e9valo\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#\\\/schema\\\/person\\\/c5e1c51b2f3403c743346f269ffa07ec\"},\"headline\":\"Settings to optimize images in real time with i3\",\"datePublished\":\"2024-09-17T08:42:55+00:00\",\"dateModified\":\"2024-09-17T10:10:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/\"},\"wordCount\":527,\"publisher\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/TE-OG-12.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/\",\"url\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/\",\"name\":\"Settings to optimize images in real time with i3 - Transparent Edge\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/TE-OG-12.png\",\"datePublished\":\"2024-09-17T08:42:55+00:00\",\"dateModified\":\"2024-09-17T10:10:30+00:00\",\"description\":\"Recommendations for configuring and tuning i3 to optimize your images, reduce bandwidth, and improve loading speed\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/TE-OG-12.png\",\"contentUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/TE-OG-12.png\",\"width\":1200,\"height\":627},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/optimize-images-in-real-time\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/www.transparentedge.eu\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Settings to optimize images in real time with i3\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#website\",\"url\":\"https:\\\/\\\/www.transparentedge.eu\\\/\",\"name\":\"Transparent Edge\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#organization\"},\"alternateName\":\"Transparent Edge\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.transparentedge.eu\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#organization\",\"name\":\"Transparent Edge Services\",\"alternateName\":\"Transparent Edge\",\"url\":\"https:\\\/\\\/www.transparentedge.eu\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/logotipo-cuadrado.jpg\",\"contentUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/logotipo-cuadrado.jpg\",\"width\":1328,\"height\":1180,\"caption\":\"Transparent Edge Services\"},\"image\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/tedgeservices\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/transparent-edge\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UC5zZoyZmiLGBTAdiFpj2xHA\\\/videos\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#\\\/schema\\\/person\\\/c5e1c51b2f3403c743346f269ffa07ec\",\"name\":\"Sonia Ar\u00e9valo\",\"description\":\"Nada como la sensaci\u00f3n de maravilla e infinitud que se despierta cuando aprendo algo nuevo, cuando descubro cu\u00e1l era la historia y c\u00f3mo funciona algo. Vivo en Madrid hace poco, desarrollo sitios web hace siempre.\",\"sameAs\":[\"https:\\\/\\\/www.transparentedge.eu\\\/\",\"https:\\\/\\\/www.instagram.com\\\/aldeaglobal.web\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/soniaarevalo\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Settings to optimize images in real time with i3 - Transparent Edge","description":"Recommendations for configuring and tuning i3 to optimize your images, reduce bandwidth, and improve loading speed","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.transparentedge.eu\/blog\/optimize-images-in-real-time\/","og_locale":"en_US","og_type":"article","og_title":"Settings to optimize images in real time with i3 - Transparent Edge","og_description":"Recommendations for configuring and tuning i3 to optimize your images, reduce bandwidth, and improve loading speed","og_url":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/","og_site_name":"Transparent Edge","article_published_time":"2024-09-17T08:42:55+00:00","article_modified_time":"2024-09-17T10:10:30+00:00","og_image":[{"width":1200,"height":627,"url":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2021\/03\/TE-OG-12.png","type":"image\/png"}],"author":"Sonia Ar\u00e9valo","twitter_card":"summary_large_image","twitter_creator":"@tedgeservices","twitter_site":"@tedgeservices","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/#article","isPartOf":{"@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/"},"author":{"name":"Sonia Ar\u00e9valo","@id":"https:\/\/www.transparentedge.eu\/#\/schema\/person\/c5e1c51b2f3403c743346f269ffa07ec"},"headline":"Settings to optimize images in real time with i3","datePublished":"2024-09-17T08:42:55+00:00","dateModified":"2024-09-17T10:10:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/"},"wordCount":527,"publisher":{"@id":"https:\/\/www.transparentedge.eu\/#organization"},"image":{"@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/#primaryimage"},"thumbnailUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2021\/03\/TE-OG-12.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/","url":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/","name":"Settings to optimize images in real time with i3 - Transparent Edge","isPartOf":{"@id":"https:\/\/www.transparentedge.eu\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/#primaryimage"},"image":{"@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/#primaryimage"},"thumbnailUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2021\/03\/TE-OG-12.png","datePublished":"2024-09-17T08:42:55+00:00","dateModified":"2024-09-17T10:10:30+00:00","description":"Recommendations for configuring and tuning i3 to optimize your images, reduce bandwidth, and improve loading speed","breadcrumb":{"@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/#primaryimage","url":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2021\/03\/TE-OG-12.png","contentUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2021\/03\/TE-OG-12.png","width":1200,"height":627},{"@type":"BreadcrumbList","@id":"https:\/\/www.transparentedge.eu\/blog\/optimize-images-in-real-time\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/www.transparentedge.eu\/en\/"},{"@type":"ListItem","position":2,"name":"Settings to optimize images in real time with i3"}]},{"@type":"WebSite","@id":"https:\/\/www.transparentedge.eu\/#website","url":"https:\/\/www.transparentedge.eu\/","name":"Transparent Edge","description":"","publisher":{"@id":"https:\/\/www.transparentedge.eu\/#organization"},"alternateName":"Transparent Edge","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.transparentedge.eu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.transparentedge.eu\/#organization","name":"Transparent Edge Services","alternateName":"Transparent Edge","url":"https:\/\/www.transparentedge.eu\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.transparentedge.eu\/#\/schema\/logo\/image\/","url":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2023\/07\/logotipo-cuadrado.jpg","contentUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2023\/07\/logotipo-cuadrado.jpg","width":1328,"height":1180,"caption":"Transparent Edge Services"},"image":{"@id":"https:\/\/www.transparentedge.eu\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/tedgeservices","https:\/\/www.linkedin.com\/company\/transparent-edge\/","https:\/\/www.youtube.com\/channel\/UC5zZoyZmiLGBTAdiFpj2xHA\/videos"]},{"@type":"Person","@id":"https:\/\/www.transparentedge.eu\/#\/schema\/person\/c5e1c51b2f3403c743346f269ffa07ec","name":"Sonia Ar\u00e9valo","description":"Nada como la sensaci\u00f3n de maravilla e infinitud que se despierta cuando aprendo algo nuevo, cuando descubro cu\u00e1l era la historia y c\u00f3mo funciona algo. Vivo en Madrid hace poco, desarrollo sitios web hace siempre.","sameAs":["https:\/\/www.transparentedge.eu\/","https:\/\/www.instagram.com\/aldeaglobal.web","https:\/\/www.linkedin.com\/in\/soniaarevalo\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/posts\/19888","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/users\/18"}],"replies":[{"embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/comments?post=19888"}],"version-history":[{"count":8,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/posts\/19888\/revisions"}],"predecessor-version":[{"id":19910,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/posts\/19888\/revisions\/19910"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/media\/19586"}],"wp:attachment":[{"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/media?parent=19888"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/categories?post=19888"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/tags?post=19888"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}