{"id":20392,"date":"2025-01-15T17:17:54","date_gmt":"2025-01-15T16:17:54","guid":{"rendered":"https:\/\/www.transparentedge.eu\/en\/blog\/"},"modified":"2026-04-06T17:30:24","modified_gmt":"2026-04-06T15:30:24","slug":"tips-to-get-the-most-out-of-bot-mitigation","status":"publish","type":"post","link":"https:\/\/www.transparentedge.eu\/en\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/","title":{"rendered":"Tips to get the most out of Bot Management"},"content":{"rendered":"\n<p>Malicious automated traffic is constantly growing, both in volume and sophistication. Advanced bots replicate mouse movements and clicks through browser automation software or malware installed on real devices. In addition, evasive bots employ stealth techniques, hiding behind anonymous proxies, VPNs, peer-to-peer networks, and spoofed headers.<\/p>\n\n\n\n<p>In this context, identifying and neutralizing these threats, without affecting legitimate traffic, is critical. Effectively detecting bot traffic and mitigating malicious bots is simple if you learn how to combine advanced automated detection with customizable responses.<\/p>\n\n\n\n<p>Below, we present a series of tips to help you get the most out of our <a href=\"https:\/\/www.transparentedge.eu\/en\/edge-security-en\/bot-mitigation\/\">Bot Management<\/a> solution. You will be able to ensure robust protection tailored to your needs in just a few clicks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Customize bot detection levels according to risk<\/h2>\n\n\n\n<p>The first step to optimize the use of <strong>Bot Management<\/strong> is to properly configure the detection parameters. You can adjust aspects such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Minimum Risk Score:<\/strong> set a threshold that defines when to block requests. For example, block IPs with a risk of 60 or higher.<\/li>\n\n\n\n<li><strong>ASN Detection:<\/strong> identify and block IPs associated with suspicious autonomous systems. You can adjust the settings to trigger blocks based on the risk level.<\/li>\n\n\n\n<li><strong>Data Centers:<\/strong> enable specific detections for data center IPs.<\/li>\n\n\n\n<li><strong>Denylists:<\/strong> automatically block requests from IPs categorized as abusive or from anonymous proxies\/VPNs.<\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udc49 Top tip: If your site has critical areas, such as <em>\/admin<\/em>, apply stricter settings to those specific paths.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Take advantage of customizable actions<\/h2>\n\n\n\n<p><strong>Bot Management<\/strong> allows you to define specific actions for each type of detection:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Block:<\/strong> prevents access from malicious IPs.<\/li>\n\n\n\n<li><strong>JavaScript Challenge:<\/strong> filters bots by displaying a challenge that most will not be able to overcome.<\/li>\n\n\n\n<li><strong>Captcha:<\/strong> ideal for balancing protection and accessibility. You can force a captcha for IP addresses detected as suspicious. Users who successfully complete the captcha will be able to access the site, and the risk associated with their IP will decrease over time.<\/li>\n\n\n\n<li><strong>Bypass:<\/strong> mode that allows operation in detection mode. You will record statistics without blocking traffic.<\/li>\n<\/ul>\n\n\n\n<p><em>VLC example for a JavaScript challenge:<\/em><\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n    if (req.http.host == \"www.example.com\") {\n        set req.http.TCDN-BM-Action = \"jschallenge\";\n    }\n}<\/code><\/pre>\n\n\n\n<p><em>Example in VLC to block \/admin:<\/em><\/p>\n<\/div><\/div>\n<\/div><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n    if (req.http.host == \"www.example.com\" &amp;&amp; req.url ~ \"^\/admin\") {\n        set req.http.TCDN-BM-Action = \"block\";\n    }\n}<\/code><\/pre>\n\n\n\n<p><em>How to enable detection mode:<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n    if (req.http.host == \"www.example.com\") {\n        set req.http.TCDN-BM-Action = \"bypass\";\n    }\n}\n<\/code><\/pre>\n\n\n\n<p>\ud83d\udc49&nbsp; You can find more examples of VLC instructions for optimally configuring bot mitigation in our <a href=\"https:\/\/docs.transparentedge.eu\/\">documentation center<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Integrates real-time IP evaluation<\/h2>\n\n\n\n<p>The <code>botm_assessment<\/code> command allows you to obtain advanced information about an IP in real time, such as its associated risk, whether it is an anonymous proxy, VPN, or if it is linked to forum abuse. With this data, you can dynamically adjust responses based on context. las respuestas seg\u00fan el contexto.<\/p>\n\n\n\n<p>\ud83d\udc49 Pro Tip: Use <code>botm_assessment<\/code> on critical paths to make informed decisions based on multiple factors.<\/p>\n\n\n\n<p><em>Dynamic logic example in VLC:<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sub vcl_recv {\n    if (req.http.host == \"www.example.com\" &amp;&amp; req.url ~ \"^\/posts\") {\n        call botm_assessment;\n\n        if (var.get_int(\"botm-risk\") &gt; 50) {\n            call show_captcha;\n        } else if (var.get_int(\"botm-risk\") &gt; 15) {\n            call show_jschallenge;\n        }\n\n        if (var.get(\"botm-is-abuse\") == \"1\" &amp;&amp; var.get_int(\"botm-risk\") &gt; 20) {\n            call deny_request;\n        }\n    }\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Use the fingerprint script for advanced bot detection<\/h2>\n\n\n\n<p>In addition to the IP reputation database, you can implement the <em>fingerprinting<\/em> script. This small JavaScript code gathers detailed information about the client&#8217;s JS engine and sends a report to our API for further analysis.<\/p>\n\n\n\n<p>This approach makes it possible to identify advanced bots that simulate human behavior, improving the accuracy of real-time detection.<\/p>\n\n\n\n<p>\ud83d\udc49 Tip: include this script on pages with high traffic or those vulnerable to attacks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Combine rules for more granular protection<\/h2>\n\n\n\n<p>Not all sites have the same security requirements. For example, you may decide to block datacenter IPs but allow access from anonymous proxies if they do not represent a high risk.<\/p>\n\n\n\n<p>\ud83d\udc49 Practical tip: design rules that prioritize essential business while mitigating threats.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Regularly monitor and adjustment<\/h2>\n\n\n\n<p>The effectiveness of any mitigation solution relies on its adaptability. Take advantage of the <a href=\"https:\/\/youtu.be\/inp0kxWNidY?si=ckYDCXRjHVGPayzy\" target=\"_blank\" rel=\"noreferrer noopener\">reports and statistics<\/a> provided by <strong>Bot Management<\/strong> to identify traffic patterns and adjust configurations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Effective protection from the very beginning<\/h2>\n\n\n\n<p><strong>Bot Management<\/strong> not only protects against advanced and evasive bots out of the box, but also aligns with regulations like GDPR by not tracking or identifying users. It\u2019s easy to install and doesn\u2019t require any changes to your infrastructure, giving you full visibility into automated traffic through real-time forensic analysis.<\/p>\n\n\n\n<p>Get started today with a few tweaks to your settings and protect yourself from the impact of even the most sophisticated bots without affecting the legitimate traffic that drives your business.afectar el tr\u00e1fico leg\u00edtimo que impulsa tu negocio.<\/p>\n\n\n\n<p><br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Effectively detecting bot traffic and mitigating malicious bots is simple if you learn how to combine advanced automated detection with customizable responses.<\/p>\n","protected":false},"author":18,"featured_media":20390,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[7],"tags":[],"class_list":["post-20392","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>Bot Management<\/title>\n<meta name=\"description\" content=\"Effectively detecting bot traffic, managing IA bots and mitigating malicious bots is simple with this customizable tool.\" \/>\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\/tips-to-get-the-most-out-of-bot-mitigation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bot Management\" \/>\n<meta property=\"og:description\" content=\"Effectively detecting bot traffic, managing IA bots and mitigating malicious bots is simple with this customizable tool.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/\" \/>\n<meta property=\"og:site_name\" content=\"Transparent Edge\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-15T16:17:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-06T15:30:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2025\/01\/TE-opengraph-imagen-1200-x-627-px.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\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/\"},\"author\":{\"name\":\"Sonia Ar\u00e9valo\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#\\\/schema\\\/person\\\/c5e1c51b2f3403c743346f269ffa07ec\"},\"headline\":\"Tips to get the most out of Bot Management\",\"datePublished\":\"2025-01-15T16:17:54+00:00\",\"dateModified\":\"2026-04-06T15:30:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/\"},\"wordCount\":705,\"publisher\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/TE-opengraph-imagen-1200-x-627-px.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/\",\"url\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/\",\"name\":\"Bot Management\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/TE-opengraph-imagen-1200-x-627-px.png\",\"datePublished\":\"2025-01-15T16:17:54+00:00\",\"dateModified\":\"2026-04-06T15:30:24+00:00\",\"description\":\"Effectively detecting bot traffic, managing IA bots and mitigating malicious bots is simple with this customizable tool.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/TE-opengraph-imagen-1200-x-627-px.png\",\"contentUrl\":\"https:\\\/\\\/www.transparentedge.eu\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/TE-opengraph-imagen-1200-x-627-px.png\",\"width\":1200,\"height\":627},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.transparentedge.eu\\\/blog\\\/tips-to-get-the-most-out-of-bot-mitigation\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/www.transparentedge.eu\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tips to get the most out of Bot Management\"}]},{\"@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":"Bot Management","description":"Effectively detecting bot traffic, managing IA bots and mitigating malicious bots is simple with this customizable tool.","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\/tips-to-get-the-most-out-of-bot-mitigation\/","og_locale":"en_US","og_type":"article","og_title":"Bot Management","og_description":"Effectively detecting bot traffic, managing IA bots and mitigating malicious bots is simple with this customizable tool.","og_url":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/","og_site_name":"Transparent Edge","article_published_time":"2025-01-15T16:17:54+00:00","article_modified_time":"2026-04-06T15:30:24+00:00","og_image":[{"width":1200,"height":627,"url":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2025\/01\/TE-opengraph-imagen-1200-x-627-px.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\/tips-to-get-the-most-out-of-bot-mitigation\/#article","isPartOf":{"@id":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/"},"author":{"name":"Sonia Ar\u00e9valo","@id":"https:\/\/www.transparentedge.eu\/#\/schema\/person\/c5e1c51b2f3403c743346f269ffa07ec"},"headline":"Tips to get the most out of Bot Management","datePublished":"2025-01-15T16:17:54+00:00","dateModified":"2026-04-06T15:30:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/"},"wordCount":705,"publisher":{"@id":"https:\/\/www.transparentedge.eu\/#organization"},"image":{"@id":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/#primaryimage"},"thumbnailUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2025\/01\/TE-opengraph-imagen-1200-x-627-px.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/","url":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/","name":"Bot Management","isPartOf":{"@id":"https:\/\/www.transparentedge.eu\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/#primaryimage"},"image":{"@id":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/#primaryimage"},"thumbnailUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2025\/01\/TE-opengraph-imagen-1200-x-627-px.png","datePublished":"2025-01-15T16:17:54+00:00","dateModified":"2026-04-06T15:30:24+00:00","description":"Effectively detecting bot traffic, managing IA bots and mitigating malicious bots is simple with this customizable tool.","breadcrumb":{"@id":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/#primaryimage","url":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2025\/01\/TE-opengraph-imagen-1200-x-627-px.png","contentUrl":"https:\/\/www.transparentedge.eu\/wp-content\/uploads\/2025\/01\/TE-opengraph-imagen-1200-x-627-px.png","width":1200,"height":627},{"@type":"BreadcrumbList","@id":"https:\/\/www.transparentedge.eu\/blog\/tips-to-get-the-most-out-of-bot-mitigation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/www.transparentedge.eu\/en\/"},{"@type":"ListItem","position":2,"name":"Tips to get the most out of Bot Management"}]},{"@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\/20392","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=20392"}],"version-history":[{"count":10,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/posts\/20392\/revisions"}],"predecessor-version":[{"id":22867,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/posts\/20392\/revisions\/22867"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/media\/20390"}],"wp:attachment":[{"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/media?parent=20392"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/categories?post=20392"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.transparentedge.eu\/en\/wp-json\/wp\/v2\/tags?post=20392"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}