{"id":23203,"date":"2026-06-16T10:58:18","date_gmt":"2026-06-16T08:58:18","guid":{"rendered":"https:\/\/www.transparentedge.eu\/en\/blog\/"},"modified":"2026-06-16T10:58:19","modified_gmt":"2026-06-16T08:58:19","slug":"multi-origin-without-modifying-dns","status":"publish","type":"post","link":"https:\/\/www.transparentedge.eu\/en\/blog\/multi-origin-without-modifying-dns\/","title":{"rendered":"Multi-origin without modifying DNS"},"content":{"rendered":"\n<p>Deploy a new version without any downtime. Migrate services gradually. Test in production with a real subset of users. All of this can be done from the CDN, without modifying the DNS, without waiting for TTL propagation, and without the stress of coordinating emergency plans between teams.<\/p>\n\n\n\n<p>Transparent Edge&#8217;s multi-origin configuration allows you to assign different backends based on any element of the HTTP request: the URL, a cookie, a header. The VCL enables highly precise routing rule tuning, deploys in seconds, and can be rolled back just as quickly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is multi-origin and how does it work<\/h2>\n\n\n\n<p>In a standard configuration, a domain points to a single backend. In multi-origin, the CDN decides which backend to send each request to before it reaches the origin. This decision can depend on any visible element in the request: the route, a content negotiation header, a session cookie, the user&#8217;s country, the client version, and more.<\/p>\n\n\n\n<p>The mechanism is straightforward: in &#8216;<code>vcl_recv<\/code>&#8216;, &#8216;<code>req.backend_hint<\/code>&#8216; is set with the target backend. The necessary backends are declared in the dashboard and referenced from the VCL.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n  # Default backend\n  set req.backend_hint = c83_monolito.backend();\n\n  # The blog points to a different server.\n  if (req.url ~ \"^\/blog\") {\n    set req.backend_hint = c83_blog.backend();\n  }\n}\n<\/code><\/pre>\n\n\n\n<p>The request reaches the CDN, the VCL evaluates it and forwards it to the correct backend. DNS is not involved in this process. The change is applied in seconds.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Migrate the monolith route by route via URL<\/h2>\n\n\n\n<p>The most common scenario in architectures undergoing transition is as follows: there&#8217;s a monolith managing everything, and a team is gradually extracting services. The new microservice is ready, but production validation requires real traffic. With a DNS change, that&#8217;s risky; with multi-origin architecture, it&#8217;s safe.<\/p>\n\n\n\n<p>The new service is configured as a backend in Transparent Edge and routed to it using a URL prefix:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n  set req.backend_hint = c83_monolito.backend();\n\n  # The order API routes go to the new microservice\n  if (req.url ~ \"^\/api\/orders\") {\n    set req.backend_hint = c83_orders_service.backend();\n  }\n}\n<\/code><\/pre>\n\n\n\n<p>The user doesn&#8217;t notice anything. The DNS doesn&#8217;t change. If something goes wrong, reverting the VCL takes minutes. The monolith continues to handle the rest of the process while the team works in parallel.<\/p>\n\n\n\n<p>The pattern supports a phased migration: first &#8216;<code>\/api\/orders<\/code>&#8216;, then &#8216;<code>\/api\/products<\/code>&#8216;, then &#8216;<code>\/api\/users<\/code>&#8216;. Each migrated route is validated independently before moving on to the next.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cookie-controlled deployments<\/h2>\n\n\n\n<p>The blue\/green deployment maintains two identical environments running simultaneously, one active and one on standby. Switching traffic between them, with multi-source traffic, is a VCL change. No DNS, no maintenance window.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.transparentedge.eu\/blog\/canary-deployment\/\">Canary deployment<\/a> takes this a step further, sending only a fraction of the traffic to the new environment before fully opening it. Cookies allow for precise control. Users with a specific cookie are directed to the new backend; the rest remain in the current one.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n  set req.backend_hint = c83_blue.backend();\n\n  # Users with the canary cookie go to the green environment\n  if (req.http.Cookie ~ \"deployment=green\") {\n    set req.backend_hint = c83_green.backend();\n  }\n}\n<\/code><\/pre>\n\n\n\n<p>In practice, the QA team or beta testers receive this cookie. Production traffic is unaffected. Once validation is successful, the VCL is changed so that everyone goes to the green environment. The switchover is instantaneous.<\/p>\n\n\n\n<p>The same mechanism applies to phased deployments based on user segments: enterprise customers, users of a specific plan, sessions initiated on a particular date. If the information is stored in a cookie, the CDN can make the decision.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The header as a routing signal<\/h2>\n\n\n\n<p>Headers provide more explicit control, especially useful when the client is an internal service, a CI\/CD pipeline, or a QA tool that can construct the request <a href=\"https:\/\/www.transparentedge.eu\/blog\/making-decisions-based-on-http-headers\/\">with custom headers<\/a>.<br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n  set req.backend_hint = c83_produccion.backend();\n\n  # Internal requests with the staging header go to the test environment\n  if (req.http.X-Target-Env == \"staging\") {\n    set req.backend_hint = c83_staging.backend();\n  }\n}\n\n<\/code><\/pre>\n\n\n\n<p>With this pattern, a CI pipeline can run integration tests against the actual production domain (same URL, same TLS certificate, same CDN) but routed to a test environment backend. The end user never sees these requests. The team tests against the real infrastructure, not against a parallel environment that always has some discrepancy.<\/p>\n\n\n\n<p>This scheme is also useful in multi-region architectures: the header indicates the client&#8217;s origin region, and the VCL selects the corresponding backend without the need for separate subdomains or additional DNS records.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What changes in practice<\/h2>\n\n\n\n<p>Multi-origin turns the CDN into a routing layer that operates before requests reach any application server.<\/p>\n\n\n\n<p>The consequences are concrete:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Blue\/green deployments no longer rely on DNS propagation.<\/li>\n\n\n\n<li>Monolith to microservices migrations are performed route by route, with real traffic and rollback in seconds.<\/li>\n\n\n\n<li>Test environments can use the production domain without additional infrastructure.<\/li>\n<\/ul>\n\n\n\n<p>The configuration model is declarative. You write a VCL, apply it, and Transparent Edge distributes it to the edge nodes. If something goes wrong, the rollback uses the same operation. The entire process, from change to validation, fits within the time of a team meeting.<\/p>\n\n\n\n<p>To generate VCL snippets adapted to your configuration, go to <a href=\"https:\/\/docs.transparentedge.eu\/config\/easy-setup\">Easy Setup<\/a> in your control panel and it will guide you step by step. If you have questions about routing or need help with a specific case, the Transparent Edge support team is available to help you.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Reference documentation:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/docs.transparentedge.eu\/guides\/enrutando-el-trafico-a-distintos-backend\">Routing traffic to different backends<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/docs.transparentedge.eu\/guides\/trabajando-con-cookies\">Working with cookies<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/docs.transparentedge.eu\/guides\/tomando-decisiones-sobre-las-cabeceras-http\">Making decisions based on HTTP headers<\/a><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Transparent Edge&#8217;s multi-origin configuration allows you to assign different backends based on any element of the HTTP request. The VCL enables highly precise routing rule tuning, deploys in seconds, and can be rolled back just as quickly.<\/p>\n","protected":false},"author":18,"featured_media":22881,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[7,152,159],"tags":[],"class_list":["post-23203","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","category-cdn-es-en","category-alto-rendimiento-en"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Multi-origin without modifying DNS - Transparent Edge<\/title>\n<meta name=\"description\" content=\"Transparent Edge&#039;s multi-origin configuration allows you to assign different backends based on any element of the HTTP request\" \/>\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\/multi-origin-without-modifying-dns\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Multi-origin without modifying DNS - Transparent Edge\" \/>\n<meta property=\"og:description\" content=\"Transparent Edge&#039;s multi-origin configuration allows you to assign different backends based on any element of the HTTP request\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/\" \/>\n<meta property=\"og:site_name\" content=\"Transparent Edge\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-16T08:58:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-16T08:58:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2026\/04\/TE_blog_Los_invisibles_CDN_EN.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2063\" \/>\n\t<meta property=\"og:image:height\" content=\"1377\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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\\\/multi-origin-without-modifying-dns\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/\"},\"author\":{\"name\":\"Sonia Ar\u00e9valo\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#\\\/schema\\\/person\\\/c5e1c51b2f3403c743346f269ffa07ec\"},\"headline\":\"Multi-origin without modifying DNS\",\"datePublished\":\"2026-06-16T08:58:18+00:00\",\"dateModified\":\"2026-06-16T08:58:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/\"},\"wordCount\":786,\"publisher\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/TE_blog_Los_invisibles_CDN_EN.jpg\",\"articleSection\":{\"1\":\"cdn\",\"2\":\"alto rendimiento\"},\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/\",\"url\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/\",\"name\":\"Multi-origin without modifying DNS - Transparent Edge\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/TE_blog_Los_invisibles_CDN_EN.jpg\",\"datePublished\":\"2026-06-16T08:58:18+00:00\",\"dateModified\":\"2026-06-16T08:58:19+00:00\",\"description\":\"Transparent Edge's multi-origin configuration allows you to assign different backends based on any element of the HTTP request\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/TE_blog_Los_invisibles_CDN_EN.jpg\",\"contentUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/TE_blog_Los_invisibles_CDN_EN.jpg\",\"width\":2063,\"height\":1377},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/multi-origin-without-modifying-dns\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/www.transparentedge.eu\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Multi-origin without modifying DNS\"}]},{\"@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":"Multi-origin without modifying DNS - Transparent Edge","description":"Transparent Edge's multi-origin configuration allows you to assign different backends based on any element of the HTTP request","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\/multi-origin-without-modifying-dns\/","og_locale":"en_US","og_type":"article","og_title":"Multi-origin without modifying DNS - Transparent Edge","og_description":"Transparent Edge's multi-origin configuration allows you to assign different backends based on any element of the HTTP request","og_url":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/","og_site_name":"Transparent Edge","article_published_time":"2026-06-16T08:58:18+00:00","article_modified_time":"2026-06-16T08:58:19+00:00","og_image":[{"width":2063,"height":1377,"url":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2026\/04\/TE_blog_Los_invisibles_CDN_EN.jpg","type":"image\/jpeg"}],"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\/multi-origin-without-modifying-dns\/#article","isPartOf":{"@id":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/"},"author":{"name":"Sonia Ar\u00e9valo","@id":"https:\/\/www.transparentedge.eu\/#\/schema\/person\/c5e1c51b2f3403c743346f269ffa07ec"},"headline":"Multi-origin without modifying DNS","datePublished":"2026-06-16T08:58:18+00:00","dateModified":"2026-06-16T08:58:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/"},"wordCount":786,"publisher":{"@id":"https:\/\/www.transparentedge.eu\/#organization"},"image":{"@id":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/#primaryimage"},"thumbnailUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2026\/04\/TE_blog_Los_invisibles_CDN_EN.jpg","articleSection":{"1":"cdn","2":"alto rendimiento"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/","url":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/","name":"Multi-origin without modifying DNS - Transparent Edge","isPartOf":{"@id":"https:\/\/www.transparentedge.eu\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/#primaryimage"},"image":{"@id":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/#primaryimage"},"thumbnailUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2026\/04\/TE_blog_Los_invisibles_CDN_EN.jpg","datePublished":"2026-06-16T08:58:18+00:00","dateModified":"2026-06-16T08:58:19+00:00","description":"Transparent Edge's multi-origin configuration allows you to assign different backends based on any element of the HTTP request","breadcrumb":{"@id":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/#primaryimage","url":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2026\/04\/TE_blog_Los_invisibles_CDN_EN.jpg","contentUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2026\/04\/TE_blog_Los_invisibles_CDN_EN.jpg","width":2063,"height":1377},{"@type":"BreadcrumbList","@id":"https:\/\/www.transparentedge.eu\/blog\/multi-origin-without-modifying-dns\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/www.transparentedge.eu\/en\/"},{"@type":"ListItem","position":2,"name":"Multi-origin without modifying DNS"}]},{"@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\/23203","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=23203"}],"version-history":[{"count":2,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/posts\/23203\/revisions"}],"predecessor-version":[{"id":23205,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/posts\/23203\/revisions\/23205"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/media\/22881"}],"wp:attachment":[{"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/media?parent=23203"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/categories?post=23203"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/tags?post=23203"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}