{"id":295,"date":"2026-08-29T08:01:52","date_gmt":"2026-08-29T08:01:52","guid":{"rendered":"https:\/\/wp.spain2.com\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/"},"modified":"2026-08-29T08:01:52","modified_gmt":"2026-08-29T08:01:52","slug":"kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs","status":"publish","type":"post","link":"https:\/\/wp.spain2.com\/es\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/","title":{"rendered":"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs"},"content":{"rendered":"<p>For years, the Kubernetes <code>Ingress<\/code> object was the de facto way to expose services to the outside world. But as traffic patterns got more complex \u2014 path-based routing, weighted canary splits, header-based routing, and multiple ingress controllers \u2014 the classic Ingress API started to show its seams. In 2026, the <strong>Kubernetes Gateway API<\/strong> has officially reached GA for most core resources and is rapidly becoming the standard way SMBs route traffic into their clusters. If you&#8217;re still glued to <code>nginx-ingress<\/code> annotations, this guide will show you why \u2014 and how \u2014 to make the switch.<\/p>\n<h2>Why Gateway API Is Replacing Ingress<\/h2>\n<p>The original Ingress API was designed when Kubernetes had just a handful of users and one or two ingress controllers. It could only express a limited set of routing rules, and every controller vendor built its own proprietary annotations to fill the gaps. The result? Your Ingress config was locked to your controller, and advanced routing meant copying magic strings from vendor docs.<\/p>\n<p>Gateway API fixes this with a role-based, expressive, and vendor-neutral model built around three core concepts:<\/p>\n<ul>\n<li><strong>Gateway<\/strong> \u2014 the infrastructure itself (the load balancer, one or more listeners\/ports).<\/li>\n<li><strong>GatewayClass<\/strong> \u2014 the controller that implements the Gateway (e.g., <code>nginx<\/code>, <code>traefik<\/code>, <code>istio<\/code>, <code>cilium<\/code>).<\/li>\n<li><strong>HTTPRoute (and TCPRoute, TLSRoute, UDPRoute)<\/strong> \u2014 the routing rules that attach to a Gateway.<\/li>\n<\/ul>\n<p>This separation means a platform team defines the <em>infrastructure<\/em>, while application teams define the <em>routes<\/em> \u2014 a clean boundary that maps perfectly to a DevOps\/SRE operating model.<\/p>\n<h2>Core Concepts: Gateway, GatewayClass, and HTTPRoute<\/h2>\n<p>Let&#8217;s look at a real example. First, define a <code>GatewayClass<\/code> to say which controller implements the gateway:<\/p>\n<pre><code>apiVersion: gateway.networking.k8s.io\/v1\nkind: GatewayClass\nmetadata:\n  name: nginx\nspec:\n  controllerName: gateway.envoyproxy.io\/gatewayclass-controller\n<\/code><\/pre>\n<p>Next, define the <code>Gateway<\/code> itself \u2014 the actual load balancer listening on a port:<\/p>\n<pre><code>apiVersion: gateway.networking.k8s.io\/v1\nkind: Gateway\nmetadata:\n  name: public-gateway\n  namespace: infra\nspec:\n  gatewayClassName: nginx\n  listeners:\n    - name: http\n      protocol: HTTP\n      port: 80\n    - name: https\n      protocol: HTTPS\n      port: 443\n      tls:\n        certificateRefs:\n          - name: wildcard-tls\n<\/code><\/pre>\n<p>Now the app team attaches an <code>HTTPRoute<\/code> \u2014 no annotations, no controller-specific magic:<\/p>\n<pre><code>apiVersion: gateway.networking.k8s.io\/v1\nkind: HTTPRoute\nmetadata:\n  name: shop-routes\n  namespace: shop\nspec:\n  parentRefs:\n    - name: public-gateway\n      namespace: infra\n  hostnames:\n    - shop.example.com\n  rules:\n    - matches:\n        - path:\n            type: PathPrefix\n            value: \/api\n      backendRefs:\n        - name: shop-api\n          port: 8080\n    - matches:\n        - path:\n            type: PathPrefix\n            value: \/\n      backendRefs:\n        - name: shop-web\n          port: 3000\n<\/code><\/pre>\n<p>Notice that Gateway and HTTPRoute live in <em>different namespaces<\/em>. This is the role-based model in action: the platform team owns <code>infra\/public-gateway<\/code>, and the app team owns its routes. No cross-team bikeshedding, no conflicting annotation wars.<\/p>\n<h2>Canary Deployments and Traffic Splitting Without Custom Annotations<\/h2>\n<p>One of the biggest wins for SMBs is built-in traffic splitting. With classic Ingress, canary releases meant installing a dedicated canary ingress controller and copying vendor annotations. With Gateway API, it&#8217;s just fields on the route:<\/p>\n<pre><code>apiVersion: gateway.networking.k8s.io\/v1\nkind: HTTPRoute\nmetadata:\n  name: shop-routes\n  namespace: shop\nspec:\n  parentRefs:\n    - name: public-gateway\n      namespace: infra\n  hostnames:\n    - shop.example.com\n  rules:\n    - backendRefs:\n        - name: shop-web-v2\n          port: 3000\n          weight: 10\n        - name: shop-web\n          port: 3000\n          weight: 90\n<\/code><\/pre>\n<p>Here 10% of traffic goes to <code>shop-web-v2<\/code> and 90% to the stable <code>shop-web<\/code>. When your canary passes the error budget check, bump the weight to 100 and cut over. Combined with a GitOps tool like Argo CD, this becomes a fully declarative, auditable progressive-delivery workflow that any lean DevOps team can operate.<\/p>\n<p>You can also add header-based routing to send only internal testers to the canary:<\/p>\n<pre><code>    - matches:\n        - headers:\n            - name: x-canary\n              value: \"true\"\n      backendRefs:\n        - name: shop-web-v2\n          port: 3000\n<\/code><\/pre>\n<h2>Moving from Ingress to Gateway API: A Migration Path<\/h2>\n<p>Don&#8217;t rip out your Ingress resources overnight. The cleanest migration is to run both in parallel while you progressively migrate traffic. Most mature ingress controllers (nginx-ingress, Traefik, Istio ingress, Cilium) now support the Gateway API, so you can point both at the same underlying load balancer.<\/p>\n<p>A pragmatic rollout looks like this:<\/p>\n<ol>\n<li><strong>Audit:<\/strong> List every Ingress resource and its routes: <code>kubectl get ingress -A<\/code><\/li>\n<li><strong>Install a Gateway API\u2013compliant controller<\/strong> and create your <code>GatewayClass<\/code> + <code>Gateway<\/code>.<\/li>\n<li><strong>Migrate one namespace at a time:<\/strong> translate each <code>Ingress<\/code> into an <code>HTTPRoute<\/code> and attach it to the new Gateway.<\/li>\n<li><strong>Validate:<\/strong> confirm traffic flows, then delete the old Ingress resource in that namespace.<\/li>\n<li><strong>Cut over DNS\/load balancer<\/strong> when the Gateway has taken over all namespaces.<\/li>\n<\/ol>\n<p>Here&#8217;s a handy one-liner to see which Ingress objects still exist so you don&#8217;t leave stragglers behind:<\/p>\n<pre><code>kubectl get ingress -A --no-headers | wc -l\nkubectl get httproute -A --no-headers | wc -l\n<\/code><\/pre>\n<p>Migration is the ideal time to consolidate. If you have five separate Ingress controllers, replacing them with one Gateway-based controller immediately reduces your operational surface \u2014 a small but meaningful step in the fight against <a href=\"\/gitops-in-2026-the-operational-model-every-lean-devops-team-needs\/\">tool sprawl<\/a>.<\/p>\n<h2>TLS, Certificates, and Real-World Gotchas<\/h2>\n<p>A few things trip up teams during migration:<\/p>\n<ul>\n<li><strong>Wildcard listeners conflict:<\/strong> Gateway validates <code>hostnames<\/code> against listener ports. If two routes on the same listener claim overlapping hostnames, the more specific match wins \u2014 but overlapping <code>*.example.com<\/code> routes can silently shadow each other. Use <code>kubectl get httproute -A -o jsonpath='{.items[*].spec.hostnames}'<\/code> to audit.<\/li>\n<li><strong>TLS lives on the Gateway, not the route.<\/strong> Certificate management moves up to the platform layer, which is actually great for SMBs \u2014 one team rotates certs centrally instead of every app team reinventing it.<\/li>\n<li><strong>Not every controller supports every route type.<\/strong> Check your controller&#8217;s supported features table before promising HTTPRoute, TCPRoute, and GRPCRoute support to your teams.<\/li>\n<\/ul>\n<p>If you&#8217;re pairing this with a service mesh, Gateway API integrates tightly with the mesh&#8217;s inbound traffic handling, giving you a single, standards-based way to express both mesh ingress and east-west routing \u2014 worth reviewing before you standardize. Check out our deep dive on <a href=\"\/service-mesh-for-smbs-when-and-how-to-adopt-istio-or-linkerd-in-2026\/\">when a service mesh makes sense for your SMB<\/a>.<\/p>\n<h2>Is Now the Right Time to Move?<\/h2>\n<p>If your cluster is small, your routing is simple, and your nginx Ingress &#8220;just works,&#8221; the Gateway API may not be urgent. But if you&#8217;re layering on canary releases, multi-tenancy, team boundaries, or multiple entry points, the migration pays for itself quickly in reduced config complexity and fewer controller-specific hacks. The Gateway API is also the path forward \u2014 Ingress is in maintenance mode, and the ecosystem is consolidating around the new standard.<\/p>\n<p>Migrating your traffic layer is a perfect &#8220;safe deployment&#8221; project: it&#8217;s incremental, reversible, and you can validate every namespace independently before cutting over. If you&#8217;d like a hand planning the rollout for your cluster, our engineers can help you move safely without the all-weekend guessing game that used to be the norm for infrastructure rewrites. <strong><a href=\"\/reserva-cita\">Book a free architecture review today<\/a><\/strong> and let&#8217;s get your ingress on solid, standards-based footing.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For years, the Kubernetes Ingress object was the de facto way to expose services to the outside world. But as traffic patterns got more complex \u2014 path-based routing, weighted canary splits, header-based routing, and multiple ingress controllers \u2014 the classic Ingress API started to show its seams. In 2026, the Kubernetes Gateway API has officially [&hellip;]<\/p>\n","protected":false},"author":0,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[2],"tags":[],"class_list":["post-295","post","type-post","status-publish","format-standard","hentry","category-devops-engineering"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs - SPAIN2.COM<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wp.spain2.com\/es\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs - SPAIN2.COM\" \/>\n<meta property=\"og:description\" content=\"For years, the Kubernetes Ingress object was the de facto way to expose services to the outside world. But as traffic patterns got more complex \u2014 path-based routing, weighted canary splits, header-based routing, and multiple ingress controllers \u2014 the classic Ingress API started to show its seams. In 2026, the Kubernetes Gateway API has officially [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wp.spain2.com\/es\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/\" \/>\n<meta property=\"og:site_name\" content=\"SPAIN2.COM\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-29T08:01:52+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\\\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs\",\"datePublished\":\"2026-08-29T08:01:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\\\/\"},\"wordCount\":920,\"publisher\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\"},\"articleSection\":[\"DevOps Engineering\"],\"inLanguage\":\"es\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\\\/\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\\\/\",\"name\":\"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs - SPAIN2.COM\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#website\"},\"datePublished\":\"2026-08-29T08:01:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wp.spain2.com\\\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wp.spain2.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#website\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/\",\"name\":\"SPAIN2.COM\",\"description\":\"Cloud Consulting That Delivers \u2014 DevOps, SRE &amp; Cloud Infrastructure for SMBs\",\"publisher\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wp.spain2.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\",\"name\":\"SPAIN2.COM\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/spain2-logo.svg\",\"contentUrl\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/spain2-logo.svg\",\"caption\":\"SPAIN2.COM\"},\"image\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs - SPAIN2.COM","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:\/\/wp.spain2.com\/es\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/","og_locale":"es_ES","og_type":"article","og_title":"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs - SPAIN2.COM","og_description":"For years, the Kubernetes Ingress object was the de facto way to expose services to the outside world. But as traffic patterns got more complex \u2014 path-based routing, weighted canary splits, header-based routing, and multiple ingress controllers \u2014 the classic Ingress API started to show its seams. In 2026, the Kubernetes Gateway API has officially [&hellip;]","og_url":"https:\/\/wp.spain2.com\/es\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/","og_site_name":"SPAIN2.COM","article_published_time":"2026-08-29T08:01:52+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"6 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wp.spain2.com\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/#article","isPartOf":{"@id":"https:\/\/wp.spain2.com\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/"},"author":{"name":"","@id":""},"headline":"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs","datePublished":"2026-08-29T08:01:52+00:00","mainEntityOfPage":{"@id":"https:\/\/wp.spain2.com\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/"},"wordCount":920,"publisher":{"@id":"https:\/\/wp.spain2.com\/#organization"},"articleSection":["DevOps Engineering"],"inLanguage":"es"},{"@type":"WebPage","@id":"https:\/\/wp.spain2.com\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/","url":"https:\/\/wp.spain2.com\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/","name":"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs - SPAIN2.COM","isPartOf":{"@id":"https:\/\/wp.spain2.com\/#website"},"datePublished":"2026-08-29T08:01:52+00:00","breadcrumb":{"@id":"https:\/\/wp.spain2.com\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wp.spain2.com\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wp.spain2.com\/kubernetes-gateway-api-in-2026-a-practical-migration-guide-for-smbs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wp.spain2.com\/"},{"@type":"ListItem","position":2,"name":"Kubernetes Gateway API in 2026: A Practical Migration Guide for SMBs"}]},{"@type":"WebSite","@id":"https:\/\/wp.spain2.com\/#website","url":"https:\/\/wp.spain2.com\/","name":"SPAIN2.COM","description":"Cloud Consulting That Delivers \u2014 DevOps, SRE &amp; Cloud Infrastructure for SMBs","publisher":{"@id":"https:\/\/wp.spain2.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wp.spain2.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/wp.spain2.com\/#organization","name":"SPAIN2.COM","url":"https:\/\/wp.spain2.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/wp.spain2.com\/#\/schema\/logo\/image\/","url":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/spain2-logo.svg","contentUrl":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/spain2-logo.svg","caption":"SPAIN2.COM"},"image":{"@id":"https:\/\/wp.spain2.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts\/295","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/comments?post=295"}],"version-history":[{"count":0,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts\/295\/revisions"}],"wp:attachment":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/media?parent=295"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/categories?post=295"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/tags?post=295"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}