{"id":38929,"date":"2026-05-08T14:00:00","date_gmt":"2026-05-08T14:00:00","guid":{"rendered":"https:\/\/www.aurorainbox.com\/?p=38929"},"modified":"2026-05-08T14:00:00","modified_gmt":"2026-05-08T14:00:00","slug":"configurar-webhook-whatsapp-business-guia-tecnica","status":"publish","type":"post","link":"https:\/\/www.aurorainbox.com\/en\/2026\/05\/08\/configure-webhook-whatsapp-business-technical-guide\/","title":{"rendered":"How to configure WhatsApp Business webhooks: technical guide 2026"},"content":{"rendered":"<p>Setting up WhatsApp Business webhooks in 2026 requires a public HTTPS callback URL, a verification token for the handshake with Meta, logic to process incoming JSON events (messages, status, templates, business_capability), and retrieval handling. For companies with an engineering team, this is the path to maximum flexibility; for everyone else, a platform like Aurora Inbox absorbs all the complexity and leaves application-specific webhooks to be handled when needed.<\/p>\n<h2 id=\"que-es-un-webhook-de-whatsapp-business\">What is a WhatsApp Business webhook?<\/h2>\n<p>A webhook is a public HTTPS endpoint that Meta POSTs to every time an event occurs in your WhatsApp Business account: incoming message, status change (delivered, read), template approval, number quality change.<\/p>\n<p>Without webhooks, there&#039;s no way to know what&#039;s happening in your API. They&#039;re the &quot;push&quot; way Meta notifies you.<\/p>\n<h2 id=\"tipos-de-eventos-de-webhook\">Types of webhook events<\/h2>\n<p>Meta sends five categories of events:<\/p>\n<table>\n<thead>\n<tr>\n<th>Event<\/th>\n<th>When it fires<\/th>\n<th>Use case<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>messages<\/code><\/td>\n<td>Customer sends message<\/td>\n<td>Process the message and respond<\/td>\n<\/tr>\n<tr>\n<td><code>statuses<\/code><\/td>\n<td>Change of status of an outgoing message<\/td>\n<td>Delivery tracking, read<\/td>\n<\/tr>\n<tr>\n<td><code>template_status_update<\/code><\/td>\n<td>Template approved\/rejected\/paused<\/td>\n<td>Update your template UI<\/td>\n<\/tr>\n<tr>\n<td><code>business_capability_update<\/code><\/td>\n<td>Changes in tier, quality, or capabilities<\/td>\n<td>Early warnings of problems<\/td>\n<\/tr>\n<tr>\n<td><code>phone_number_quality_update<\/code><\/td>\n<td>Changes in green\/yellow\/red quality<\/td>\n<td>React before the ban<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2 id=\"configurar-webhook-con-cloud-api-directa\">Configure webhook with Cloud API direct<\/h2>\n<h3 id=\"paso-1-tener-callback-url-https-publica\">Step 1: Have a public HTTPS callback URL<\/h3>\n<p>Your server must be:<\/p>\n<ul>\n<li><strong>HTTPS<\/strong> with valid certificate (Meta rejects HTTP).<\/li>\n<li><strong>Public<\/strong> (not localhost, not internal IP).<\/li>\n<li><strong>Specific endpoint<\/strong> for webhook (e.g. <code>https:\/\/tu-dominio.com\/webhooks\/whatsapp<\/code>).<\/li>\n<\/ul>\n<p>For local development, ngrok or similar tunnels work.<\/p>\n<h3 id=\"paso-2-implementar-handshake-de-verificacion\">Step 2: Implement verification handshake<\/h3>\n<p>Meta sends initial GET request to verify your callback URL:<\/p>\n<pre><code>GET \/webhooks\/whatsapp?hub.mode=subscribe&amp;hub.verify_token=YOUR_TOKEN&amp;hub.challenge=12345\n<\/code><\/pre>\n<p>Your server must:<\/p>\n<ol>\n<li>Validate that <code>hub.verify_token<\/code> It matches the token you registered.<\/li>\n<li>Return <code>hub.challenge<\/code> as a flat response.<\/li>\n<\/ol>\n<p>Example in Node.js Express:<\/p>\n<pre><code class=\"language-js\">app.get(&#039;\/webhooks\/whatsapp&#039;, (req, res) =&gt; { if (req.query[&#039;hub.verify_token&#039;] === process.env.WHATSAPP_VERIFY_TOKEN) { res.send(req.query[&#039;hub.challenge&#039;]); } else { res.status(403).send(&#039;Forbidden&#039;); } });\n<\/code><\/pre>\n<h3 id=\"paso-3-procesar-eventos-post\">Step 3: Process POST events<\/h3>\n<p>Once verified, Meta makes a POST request with the event:<\/p>\n<pre><code class=\"language-json\">{ &quot;object&quot;: &quot;whatsapp_business_account&quot;, &quot;entry&quot;: [{ &quot;id&quot;: &quot;WHATSAPP_BUSINESS_ACCOUNT_ID&quot;, &quot;changes&quot;: [{ &quot;value&quot;: { &quot;messaging_product&quot;: &quot;whatsapp&quot;, &quot;metadata&quot;: { ... }, &quot;messages&quot;: [{ &quot;from&quot;: &quot;521234567890&quot;, &quot;id&quot;: &quot;wamid.xxxxx&quot;, &quot;timestamp&quot;: &quot;1716000000&quot;, &quot;text&quot;: { &quot;body&quot;: &quot;Hi, how much does it cost?&quot; }, &quot;type&quot;: &quot;text&quot; }] }, &quot;field&quot;: &quot;messages&quot; }] }] }\n<\/code><\/pre>\n<p>Your server must:<\/p>\n<pre><code class=\"language-js\">app.post(&#039;\/webhooks\/whatsapp&#039;, (req, res) =&gt; { const entry = req.body.entry[0].changes[0].value; if (entry.messages) { for (const msg of entry.messages) { processIncomingMessage(msg); } } if (entry.statuses) { for (const status of entry.statuses) { updateMessageStatus(status); } } res.sendStatus(200); \/\/ CRITICAL: respond 200 fast });\n<\/code><\/pre>\n<h3 id=\"paso-4-configurar-webhook-en-meta-app\">Step 4: Configure webhook in Meta App<\/h3>\n<p>In Meta App Dashboard:<\/p>\n<ol>\n<li><em>WhatsApp \u2192 Configuration \u2192 Webhook<\/em>.<\/li>\n<li><strong>Callback URL:<\/strong> <code>https:\/\/tu-dominio.com\/webhooks\/whatsapp<\/code>.<\/li>\n<li><strong>Verify Token:<\/strong> the string that your code compares.<\/li>\n<li><strong>Subscribe to fields:<\/strong> <code>messages<\/code>, <code>message_template_status_update<\/code>, etc.<\/li>\n<li>Click <em>Verify and Save<\/em>If your handshake works, it&#039;s recorded.<\/li>\n<\/ol>\n<h3 id=\"paso-5-validar-firma-de-seguridad\">Step 5: Validate security signature<\/h3>\n<p>Each POST is meta-signed with HMAC-SHA256. The signature is validated to prevent fraudulent requests.<\/p>\n<pre><code class=\"language-js\">const crypto = require('crypto');\nfunction verifySignature(req) {\n  const signature = req.headers['x-hub-signature-256'];\n  const expected = 'sha256=' + crypto\n    .createHmac('sha256', process.env.WHATSAPP_APP_SECRET)\n    .update(JSON.stringify(req.body))\n    .digest('hex');\n  return signature === expected;\n}\n<\/code><\/pre>\n<h2 id=\"manejo-de-errores-y-retries\">Error handling and retries<\/h2>\n<p>Meta retry the POST if your server:<\/p>\n<ul>\n<li>Returns a code other than 200.<\/li>\n<li>He\/She does not respond in 5 seconds.<\/li>\n<\/ul>\n<p>Good practices:<\/p>\n<ul>\n<li><strong>Respond 200 immediately<\/strong> and processes the logic in the background with a queue.<\/li>\n<li><strong>Idempotence.<\/strong> Each event has a <code>wamid<\/code> unique \u2014 if you receive duplicates, do not process twice.<\/li>\n<li><strong>Logging<\/strong> full incoming payload for debugging.<\/li>\n<li><strong>Alerts<\/strong> if the error rate increases.<\/li>\n<\/ul>\n<h2 id=\"errores-comunes-en-configuracion-de-webhook\">Common errors in webhook configuration<\/h2>\n<ul>\n<li><strong>HTTP instead of HTTPS<\/strong> \u2014 Meta rejects.<\/li>\n<li><strong>Invalid SSL certificate<\/strong> \u2014 Meta validates the certificate chain.<\/li>\n<li><strong>Verify incorrect token<\/strong> \u2014 handshake fails.<\/li>\n<li><strong>Process logic before returning 200<\/strong> \u2014 timeout, Meta retreats.<\/li>\n<li><strong>Do not validate signature<\/strong> \u2014 risk of fake requests.<\/li>\n<li><strong>Do not handle duplicates<\/strong> \u2014 you process the same event twice.<\/li>\n<\/ul>\n<h2 id=\"la-alternativa-sin-codigo-aurora-inbox\">The code-free alternative: Aurora Inbox<\/h2>\n<p>For 9 out of 10 SMEs, configuring raw webhooks is over-engineering. Aurora Inbox absorbs all the complexity:<\/p>\n<ul>\n<li>Webhook configured and maintained by Aurora Inbox.<\/li>\n<li>Processing incoming messages with AI agent ready.<\/li>\n<li>Status updates tracked on the dashboard.<\/li>\n<li>Managed templates in UI without touching API.<\/li>\n<li>Number quality monitored with early warnings.<\/li>\n<\/ul>\n<p>If you need extensibility, Aurora Inbox exposes its own REST API where you can subscribe to application events that are more useful than Meta&#039;s raw events:<\/p>\n<ul>\n<li><code>conversation.created<\/code><\/li>\n<li><code>conversation.assigned<\/code><\/li>\n<li><code>ai_agent.escalated<\/code><\/li>\n<li><code>lead.qualified<\/code><\/li>\n<li><code>deal.stage_changed<\/code><\/li>\n<\/ul>\n<p><a href=\"https:\/\/www.aurorainbox.com\/en\/Identity\/Account\/Register\/?Trial=1\">Start your free trial<\/a> and connect WhatsApp without touching raw webhooks.<\/p>\n<h2 id=\"tabla-comparativa\">Comparative table<\/h2>\n<table>\n<thead>\n<tr>\n<th>Appearance<\/th>\n<th>Webhook raw Cloud API<\/th>\n<th>Aurora Inbox<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Implementation time<\/td>\n<td>1-3 weeks<\/td>\n<td>10 minutes<\/td>\n<\/tr>\n<tr>\n<td>Ongoing maintenance<\/td>\n<td>5-15 hours\/month<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td>HTTPS \/ SSL<\/td>\n<td>Your responsibility<\/td>\n<td>Handled<\/td>\n<\/tr>\n<tr>\n<td>Signature validation<\/td>\n<td>Your responsibility<\/td>\n<td>Handled<\/td>\n<\/tr>\n<tr>\n<td>Retries \/ idempotence<\/td>\n<td>Your responsibility<\/td>\n<td>Handled<\/td>\n<\/tr>\n<tr>\n<td>Payload processing<\/td>\n<td>Your responsibility<\/td>\n<td>Made<\/td>\n<\/tr>\n<tr>\n<td>Application Webhooks<\/td>\n<td>DIY<\/td>\n<td>Available<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2 id=\"por-que-aurora-inbox\">Why Aurora Inbox<\/h2>\n<p>Aurora Inbox absorbs the complexity of WhatsApp Business webhooks and exposes higher-level application webhooks for your integrations. It combines a meta-level BSP, LLM agent, RAG, multichannel support, and a full REST API for extensibility.<\/p>\n<p><a href=\"https:\/\/www.aurorainbox.com\/en\/Identity\/Account\/Register\/?Trial=1\">Start your free trial<\/a> and leaves the complexity of raw webhooks behind.<\/p>\n<h2 id=\"preguntas-frecuentes\">Frequently Asked Questions<\/h2>\n<h3 id=\"necesito-un-servidor-para-usar-webhooks-de-whatsapp\">Do I need a server to use WhatsApp webhooks?<\/h3>\n<p>For a direct Cloud API, yes. For a platform like Aurora Inbox, no\u2014the platform handles the webhook.<\/p>\n<h3 id=\"cuanto-tarda-configurar-un-webhook-raw\">How long does it take to set up a raw webhook?<\/h3>\n<p>1-3 weeks for a productive implementation with security and retries. Aurora Inbox: 10 minutes.<\/p>\n<h3 id=\"que-eventos-manda-meta-por-webhook\">What events does Meta send via webhook?<\/h3>\n<p><code>messages<\/code>, <code>statuses<\/code>, <code>message_template_status_update<\/code>, <code>business_capability_update<\/code>, <code>phone_number_quality_update<\/code>.<\/p>\n<h3 id=\"necesito-https-valido-para-webhooks\">Do I need valid HTTPS for webhooks?<\/h3>\n<p>Yes. Meta rejects HTTP and invalid SSL certificates.<\/p>\n<h3 id=\"como-evito-procesar-mensajes-duplicados\">How do I avoid processing duplicate messages?<\/h3>\n<p>Each message has a <code>wamid<\/code> Unique. Saves processed IDs and rejects duplicates.<\/p>\n<h3 id=\"puedo-tener-multiples-webhooks-para-el-mismo-numero\">Can I have multiple webhooks for the same number?<\/h3>\n<p>Not directly in the Cloud API. The standard way is to have a single webhook that forwards to multiple internal destinations.<\/p>","protected":false},"excerpt":{"rendered":"<p>Technical guide 2026 for configuring WhatsApp Business API webhooks: event types, callback URL, validation, debugging and the no-code alternative with Aurora Inbox.<\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[452],"tags":[482,469,481,204],"class_list":["post-38929","post","type-post","status-publish","format-standard","hentry","category-blog","tag-desarrollo","tag-integracion-2","tag-webhook-whatsapp","tag-whatsapp-business-api"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>C\u00f3mo configurar webhooks de WhatsApp Business: gu\u00eda t\u00e9cnica 2026<\/title>\n<meta name=\"description\" content=\"Gu\u00eda t\u00e9cnica 2026 para configurar webhooks de la API de WhatsApp Business: tipos de eventos, callback URL, validaci\u00f3n, debugging y la alternativa sin c\u00f3digo con Aurora Inbox.\" \/>\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.aurorainbox.com\/en\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C\u00f3mo configurar webhooks de WhatsApp Business: gu\u00eda t\u00e9cnica 2026\" \/>\n<meta property=\"og:description\" content=\"Gu\u00eda t\u00e9cnica 2026 para configurar webhooks de la API de WhatsApp Business: tipos de eventos, callback URL, validaci\u00f3n, debugging y la alternativa sin c\u00f3digo con Aurora Inbox.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.aurorainbox.com\/en\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/\" \/>\n<meta property=\"og:site_name\" content=\"Aurora Inbox\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=100089808166715\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-08T14:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.aurorainbox.com\/wp-content\/uploads\/2025\/01\/Datos-Automotriz-3.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"780\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"alejandro\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@aurorainbox\" \/>\n<meta name=\"twitter:site\" content=\"@aurorainbox\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"alejandro\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to configure WhatsApp Business webhooks: technical guide 2026","description":"Technical guide 2026 for configuring WhatsApp Business API webhooks: event types, callback URL, validation, debugging and the no-code alternative with Aurora Inbox.","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.aurorainbox.com\/en\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/","og_locale":"en_US","og_type":"article","og_title":"C\u00f3mo configurar webhooks de WhatsApp Business: gu\u00eda t\u00e9cnica 2026","og_description":"Gu\u00eda t\u00e9cnica 2026 para configurar webhooks de la API de WhatsApp Business: tipos de eventos, callback URL, validaci\u00f3n, debugging y la alternativa sin c\u00f3digo con Aurora Inbox.","og_url":"https:\/\/www.aurorainbox.com\/en\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/","og_site_name":"Aurora Inbox","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=100089808166715","article_published_time":"2026-05-08T14:00:00+00:00","og_image":[{"width":1080,"height":780,"url":"https:\/\/www.aurorainbox.com\/wp-content\/uploads\/2025\/01\/Datos-Automotriz-3.jpg","type":"image\/jpeg"}],"author":"alejandro","twitter_card":"summary_large_image","twitter_creator":"@aurorainbox","twitter_site":"@aurorainbox","twitter_misc":{"Written by":"alejandro","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.aurorainbox.com\/pt\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/#article","isPartOf":{"@id":"https:\/\/www.aurorainbox.com\/pt\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/"},"author":{"name":"alejandro","@id":"https:\/\/3.94.236.79\/#\/schema\/person\/cab6aa1a99141147753f3471a570dff5"},"headline":"C\u00f3mo configurar webhooks de WhatsApp Business: gu\u00eda t\u00e9cnica 2026","datePublished":"2026-05-08T14:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.aurorainbox.com\/pt\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/"},"wordCount":824,"commentCount":0,"publisher":{"@id":"https:\/\/3.94.236.79\/#organization"},"keywords":["Desarrollo","Integraci\u00f3n","Webhook WhatsApp","WhatsApp Business API"],"articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.aurorainbox.com\/pt\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.aurorainbox.com\/pt\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/","url":"https:\/\/www.aurorainbox.com\/pt\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/","name":"How to configure WhatsApp Business webhooks: technical guide 2026","isPartOf":{"@id":"https:\/\/3.94.236.79\/#website"},"datePublished":"2026-05-08T14:00:00+00:00","description":"Technical guide 2026 for configuring WhatsApp Business API webhooks: event types, callback URL, validation, debugging and the no-code alternative with Aurora Inbox.","breadcrumb":{"@id":"https:\/\/www.aurorainbox.com\/pt\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.aurorainbox.com\/pt\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.aurorainbox.com\/pt\/2026\/05\/08\/guia-tecnico-para-configurar-o-webhook-do-whatsapp-business\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.aurorainbox.com\/"},{"@type":"ListItem","position":2,"name":"C\u00f3mo configurar webhooks de WhatsApp Business: gu\u00eda t\u00e9cnica 2026"}]},{"@type":"WebSite","@id":"https:\/\/3.94.236.79\/#website","url":"https:\/\/3.94.236.79\/","name":"Aurora Inbox","description":"The best artificial intelligence agent","publisher":{"@id":"https:\/\/3.94.236.79\/#organization"},"alternateName":"Aurora Inbox","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/3.94.236.79\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/3.94.236.79\/#organization","name":"Aurora Inbox","url":"https:\/\/3.94.236.79\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/3.94.236.79\/#\/schema\/logo\/image\/","url":"https:\/\/www.aurorainbox.com\/wp-content\/uploads\/2024\/01\/BRANDMARK-Gray80x80.png","contentUrl":"https:\/\/www.aurorainbox.com\/wp-content\/uploads\/2024\/01\/BRANDMARK-Gray80x80.png","width":81,"height":81,"caption":"Aurora Inbox"},"image":{"@id":"https:\/\/3.94.236.79\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=100089808166715","https:\/\/x.com\/aurorainbox","https:\/\/www.instagram.com\/aurorainboxlatam\/","https:\/\/www.youtube.com\/@aurorainbox"]},{"@type":"Person","@id":"https:\/\/3.94.236.79\/#\/schema\/person\/cab6aa1a99141147753f3471a570dff5","name":"Alexander","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/3.94.236.79\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/da3b787e0efd5514e93ef918069c677c2a2dd12bf6a91634804bd4e2632bebee?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/da3b787e0efd5514e93ef918069c677c2a2dd12bf6a91634804bd4e2632bebee?s=96&d=mm&r=g","caption":"alejandro"},"sameAs":["https:\/\/ww3.aurorainbox.com"]}]}},"_links":{"self":[{"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/posts\/38929","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/comments?post=38929"}],"version-history":[{"count":1,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/posts\/38929\/revisions"}],"predecessor-version":[{"id":39014,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/posts\/38929\/revisions\/39014"}],"wp:attachment":[{"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/media?parent=38929"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/categories?post=38929"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/tags?post=38929"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}