{"id":197,"date":"2026-07-11T08:07:24","date_gmt":"2026-07-11T08:07:24","guid":{"rendered":"https:\/\/wp.spain2.com\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/"},"modified":"2026-07-11T08:08:30","modified_gmt":"2026-07-11T08:08:30","slug":"ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs","status":"publish","type":"post","link":"https:\/\/wp.spain2.com\/es\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/","title":{"rendered":"eBPF en 2026: C\u00f3mo el Extended BPF Est\u00e1 Revolucionando la Observabilidad, Seguridad y Redes para PYMEs"},"content":{"rendered":"<h2>What Is eBPF and Why Does It Matter in 2026?<\/h2>\n<p>If you work in DevOps or SRE, you have probably heard <strong>eBPF<\/strong> (extended Berkeley Packet Filter) being discussed more and more frequently. In 2026, eBPF has quietly become one of the most transformative technologies in the Linux kernel ecosystem \u2014 and it is increasingly accessible to SMBs through production-ready open-source tools.<\/p>\n<p>Originally designed to safely extend kernel functionality without modifying kernel source code or loading risky kernel modules, eBPF now powers everything from <strong>next-generation observability<\/strong> to <strong>real-time security enforcement<\/strong> to <strong>high-performance service meshes<\/strong>. The best part? Most of the tools are open source and free.<\/p>\n<p>In this post, we will explore what eBPF is, why it matters for your infrastructure, and how your SMB can leverage eBPF-powered tools like <strong>Cilium, Falco, Pixie, and Hubble<\/strong> to solve real problems without enterprise budgets.<\/p>\n<h3>From Kernel Curiosity to Production Standard<\/h3>\n<p>eBPF started as a way to run sandboxed programs inside the Linux kernel. In 2026, it has become a <strong>first-class citizen<\/strong> in cloud-native infrastructure. Major cloud providers, Kubernetes distributions, and observability platforms now rely on eBPF under the hood.<\/p>\n<p>The key advantages that made eBPF mainstream:<\/p>\n<ul>\n<li><strong>Safety:<\/strong> eBPF programs are verified before execution \u2014 the kernel checks that they will not crash or hang<\/li>\n<li><strong>Performance:<\/strong> Running in kernel space means near-native speed, no context switching overhead<\/li>\n<li><strong>No instrumentation needed:<\/strong> eBPF can observe any syscall, network packet, or function call without modifying application code<\/li>\n<li><strong>Dynamic loading:<\/strong> You can load and unload eBPF programs without restarting services or rebooting machines<\/li>\n<\/ul>\n<h2>How SMBs Benefit from eBPF-Powered Tools<\/h2>\n<p>For SMBs with lean teams, eBPF is a game-changer because it lets you <strong>do more with less<\/strong>. Instead of deploying and maintaining multiple agent-based solutions, you can rely on eBPF-powered tools that provide deep insights with minimal overhead.<\/p>\n<h3>1. Observability Without Instrumentation<\/h3>\n<p>Traditional observability requires adding libraries, SDKs, or agents to every application. For SMBs running heterogeneous stacks \u2014 some containerized, some on VMs, some legacy \u2014 this is expensive and time-consuming.<\/p>\n<p>eBPF-powered observability tools like <strong>Pixie<\/strong> y <strong>Cilium Hubble<\/strong> provide <strong>automatic instrumentation<\/strong>:<\/p>\n<ul>\n<li>Request-level tracing without modifying code<\/li>\n<li>Network flow visibility across your entire infrastructure<\/li>\n<li>CPU, memory, and I\/O profiling at the kernel level<\/li>\n<li>Service dependency maps generated automatically<\/li>\n<\/ul>\n<pre><code># With Hubble (Cilium observability layer), you can see all flows:\nhubble observe --namespace=production\n# Output: pod-1 -> pod-2 : HTTP GET \/api\/orders (200)\n# Output: pod-3 -> external : TLS Handshake (completed)<\/code><\/pre>\n<p>This is a massive productivity boost for teams with 2-3 DevOps engineers. You get <strong>production-grade observability<\/strong> without weeks of instrumentation work.<\/p>\n<h3>2. Security at Kernel Speed<\/h3>\n<p>Container security has traditionally required sidecar agents, audit logging configuration, or runtime security scanners that add significant overhead. eBPF-powered security tools like <strong>Falco<\/strong> (the CNCF runtime security project) and <strong>Tracee<\/strong> operate differently:<\/p>\n<ul>\n<li>They hook into kernel syscalls to detect <strong>suspicious behavior in real time<\/strong><\/li>\n<li>No modification to container images or application code<\/li>\n<li>Minimal performance impact (typically less than 5% CPU overhead)<\/li>\n<li>Out-of-the-box rules for common attack patterns (cryptominers, reverse shells, privilege escalation)<\/li>\n<\/ul>\n<p>For SMBs that cannot afford a dedicated security team, Falco provides <strong>enterprise-grade runtime security<\/strong> with minimal maintenance.<\/p>\n<pre><code># Falco rule example (YAML):\n- rule: Terminal shell in container\n  desc: A shell was spawned in a container\n  condition: &gt;\n    spawned_process and container and\n    shell_procs and proc.tty != 0\n  output: &gt;\n    Shell spawned in container (user=%user.name command=%proc.cmdline)\n  priority: WARNING<\/code><\/pre>\n<h3>3. High-Performance Networking Without Complexity<\/h3>\n<p>Service meshes traditionally relied on sidecar proxies (Envoy, Linkerd-proxy) that add latency and resource overhead. <strong>Cilium<\/strong>, powered by eBPF, has become the leading CNI plugin for Kubernetes precisely because it eliminates the sidecar overhead:<\/p>\n<ul>\n<li>Direct kernel-level routing and load balancing<\/li>\n<li>Network policies enforced at the socket layer<\/li>\n<li>Transparent encryption with WireGuard<\/li>\n<li>Cluster mesh for multi-cluster networking<\/li>\n<\/ul>\n<p>For SMBs running Kubernetes (or considering it), Cilium offers a <strong>simpler, faster, more secure<\/strong> networking layer than traditional approaches.<\/p>\n<h2>Getting Started with eBPF on a Budget<\/h2>\n<p>The best part about the eBPF ecosystem in 2026 is that <strong>all the tools are open source<\/strong>. Here is how to start:<\/p>\n<ol>\n<li><strong>Run Cilium on your Kubernetes cluster<\/strong> \u2014 it is a drop-in CNI replacement with built-in Hubble observability<\/li>\n<li><strong>Deploy Falco as a DaemonSet<\/strong> \u2014 turn on runtime security monitoring with default rules<\/li>\n<li><strong>Use bpftrace for ad-hoc debugging<\/strong> \u2014 like DTrace but for Linux, no reboot required<\/li>\n<li><strong>Explore Tetragon<\/strong> \u2014 Cilium security observability tool for real-time RBAC and process monitoring<\/li>\n<\/ol>\n<pre><code># Quick bpftrace example \u2014 trace all new processes:\nbpftrace -e 'tracepoint:syscalls:sys_enter_execve { printf(\"%s called %s\\n\", comm, str(args->filename)); }'<\/code><\/pre>\n<h2>Common Pitfalls for SMBs Adopting eBPF<\/h2>\n<p>While eBPF is powerful, there are a few gotchas to be aware of:<\/p>\n<ul>\n<li><strong>Kernel version:<\/strong> eBPF features depend on your kernel version. Kernels 5.10+ cover most use cases, but 5.15+ is recommended for production<\/li>\n<li><strong>Learning curve:<\/strong> Debugging eBPF programs directly requires low-level Linux knowledge. Stick to tooling (Falco, Cilium, Pixie) unless you have specific needs<\/li>\n<li><strong>Virtualization:<\/strong> Some cloud VM types do not fully support eBPF features. Check your instance type and hypervisor compatibility<\/li>\n<\/ul>\n<h2>The Bottom Line for SMBs<\/h2>\n<p>eBPF is not just for hyperscalers and mega-corps anymore. In 2026, it is a <strong>practical, accessible technology<\/strong> that lets lean infrastructure teams punch above their weight class. By using eBPF-powered open-source tools, your SMB can get:<\/p>\n<ul>\n<li>Production-grade observability without instrumentation work<\/li>\n<li>Runtime security monitoring without a dedicated security team<\/li>\n<li>High-performance Kubernetes networking without sidecar overhead<\/li>\n<li>All of it at near-zero additional infrastructure cost<\/li>\n<\/ul>\n<p>Whether you are at <strong>Level 2 (Centralized)<\/strong> or <strong>Level 4 (Automated)<\/strong> on the <a href=\"\/es\/the-smb-infrastructure-maturity-model-your-complete-roadmap-from-chaos-to-platform-engineering\/\">SMB Infrastructure Maturity Model<\/a>, eBPF tools can help you level up without a massive investment.<\/p>\n<hr \/>\n<p><strong>Need help implementing eBPF-powered observability or security in your infrastructure?<\/strong><br \/>\nWe help SMBs adopt modern infrastructure practices without hiring a full-time internal team.<br \/>\n<a href=\"\/es\/reserva-cita\/\">reserva una consulta gratuita<\/a> and discover how we can transform your infrastructure.<\/p>","protected":false},"excerpt":{"rendered":"<p>Descubre c\u00f3mo eBPF est\u00e1 transformando la observabilidad, seguridad y redes de Linux en 2026 \u2014 y c\u00f3mo las PYMEs pueden aprovechar herramientas open-source potenciadas por eBPF sin presupuestos empresariales.<\/p>","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-197","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>eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking 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\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking for SMBs - SPAIN2.COM\" \/>\n<meta property=\"og:description\" content=\"Learn how eBPF is transforming Linux observability, security, and networking in 2026 \u2014 and how SMBs can leverage eBPF-powered open-source tools without enterprise budgets.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wp.spain2.com\/es\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/\" \/>\n<meta property=\"og:site_name\" content=\"SPAIN2.COM\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-11T08:07:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-11T08:08:30+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=\"5 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\\\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking for SMBs\",\"datePublished\":\"2026-07-11T08:07:24+00:00\",\"dateModified\":\"2026-07-11T08:08:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\\\/\"},\"wordCount\":855,\"publisher\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\"},\"articleSection\":[\"DevOps Engineering\"],\"inLanguage\":\"es\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\\\/\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\\\/\",\"name\":\"eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking for SMBs - SPAIN2.COM\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#website\"},\"datePublished\":\"2026-07-11T08:07:24+00:00\",\"dateModified\":\"2026-07-11T08:08:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wp.spain2.com\\\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wp.spain2.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking 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":"eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking 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\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/","og_locale":"es_ES","og_type":"article","og_title":"eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking for SMBs - SPAIN2.COM","og_description":"Learn how eBPF is transforming Linux observability, security, and networking in 2026 \u2014 and how SMBs can leverage eBPF-powered open-source tools without enterprise budgets.","og_url":"https:\/\/wp.spain2.com\/es\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/","og_site_name":"SPAIN2.COM","article_published_time":"2026-07-11T08:07:24+00:00","article_modified_time":"2026-07-11T08:08:30+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"5 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wp.spain2.com\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/#article","isPartOf":{"@id":"https:\/\/wp.spain2.com\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/"},"author":{"name":"","@id":""},"headline":"eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking for SMBs","datePublished":"2026-07-11T08:07:24+00:00","dateModified":"2026-07-11T08:08:30+00:00","mainEntityOfPage":{"@id":"https:\/\/wp.spain2.com\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/"},"wordCount":855,"publisher":{"@id":"https:\/\/wp.spain2.com\/#organization"},"articleSection":["DevOps Engineering"],"inLanguage":"es"},{"@type":"WebPage","@id":"https:\/\/wp.spain2.com\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/","url":"https:\/\/wp.spain2.com\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/","name":"eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking for SMBs - SPAIN2.COM","isPartOf":{"@id":"https:\/\/wp.spain2.com\/#website"},"datePublished":"2026-07-11T08:07:24+00:00","dateModified":"2026-07-11T08:08:30+00:00","breadcrumb":{"@id":"https:\/\/wp.spain2.com\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wp.spain2.com\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wp.spain2.com\/ebpf-in-2026-how-extended-bpf-is-revolutionizing-observability-security-and-networking-for-smbs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wp.spain2.com\/"},{"@type":"ListItem","position":2,"name":"eBPF in 2026: How Extended BPF Is Revolutionizing Observability, Security, and Networking 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\/197","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=197"}],"version-history":[{"count":3,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts\/197\/revisions"}],"predecessor-version":[{"id":200,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts\/197\/revisions\/200"}],"wp:attachment":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/media?parent=197"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/categories?post=197"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/tags?post=197"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}