




{"id":6,"date":"2024-12-22T16:25:24","date_gmt":"2024-12-22T15:25:24","guid":{"rendered":"http:\/\/192.168.1.30\/?page_id=6"},"modified":"2026-04-03T12:45:11","modified_gmt":"2026-04-03T10:45:11","slug":"home","status":"publish","type":"page","link":"https:\/\/euribor365.es\/","title":{"rendered":"Inicio"},"content":{"rendered":"\n<h1 style=\"position: absolute; left: -9999px;\">Euribor hoy: Consulta a diario la evoluci\u00f3n del Eur\u00edbor<\/h1>\n\n\n\n    <div class='euribor-card'>\n        <h2 style='color: blue; font-weight: bold; font-size: 1.7em;'>16 de Abril de 2026<\/h3>\n        <p><strong>Eur\u00edbor hoy:<\/strong> <span class='valor-euribor' style='font-size: 1.1em;'>2.723%<\/span><\/p>\n        <p style='color: green; font-weight: bold;' >\n            <strong>Variaci\u00f3n diaria:<\/strong> <span class='simbolo-variacion'>\u2193 -0.033<\/span>\n        <\/p>\n        <p style='font-weight: bold; margin-bottom: -5px;' >\n            <strong>Media mensual:<\/strong> <span class='media-mensual' style='font-size: 1.1em;'>2.773%<\/span>\n        <\/p>\n        <p style='color: red; font-weight: bold;' >\n            <strong>Variaci\u00f3n mensual:<\/strong> <span class='simbolo-variacion'>\u2191 +0.208<\/span>\n        <\/p>\n        <p style='color: red; font-weight: bold;' >\n            <strong>Variaci\u00f3n interanual:<\/strong> <span class='simbolo-variacion'>\u2191 +0.63<\/span>\n        <\/p>\n    <\/div>\n    <style>\n        .euribor-card {\n            background: #f4f4f9 !important;\n            border: 1px solid #ddd;\n            border-radius: 8px;\n            padding: 20px;\n            text-align: center;\n            box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n            min-width: 500px;\nwidth: 100%; \/* La tarjeta ocupa todo el ancho del contenedor *\/\n max-width: 100%; \/* El ancho de la tarjeta no tiene l\u00edmite *\/\nbox-sizing: border-box; \/* Para que el padding se incluya dentro del ancho *\/\n    margin: 0 auto; \/* Centra la tarjeta horizontalmente *\/\n            font-size: 1em;\n        }\n        .valor-euribor {\n            font-size: 1.1em;\n            font-weight: bold;\n        }\n        .simbolo-variacion {\n            font-size: 1.1em;\n            font-weight: bold;\n        }\n        .media-mensual {\n            font-size: 1.1em;\n            font-weight: bold;\n        }\n        .euribor-card p {\n            margin-bottom: -5px;\n        }\n        .euribor-card h3 {\n            margin-bottom: 5px;\n        }\n \/* Estilos para pantallas peque\u00f1as (m\u00f3viles) *\/\n        @media (max-width: 768px) {\n            .euribor-container {\n                padding: 0 10px;\n            }\n\n            .euribor-card {\n                width: 100%; \/* En pantallas peque\u00f1as, la tarjeta ocupa todo el ancho disponible *\/\n                min-width: 100%; \/* En m\u00f3viles, aseguramos que la tarjeta ocupe todo el espacio disponible *\/\n                box-sizing: border-box;\n            }\n        }\n    <\/style>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Eur\u00edbor<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0\/css\/all.min.css\">\n<\/head>\n<body>\n    <div id=\"grafico-titulo\" style=\"text-align:center; font-size: 22px; color: blue; margin: 20px 0;\">\n        <i class=\"fa-solid fa-chart-line\" style=\"color: green; margin-right: 10px;\"><\/i>\n        Evoluci\u00f3n diaria Euribor\n    <\/div>\n<\/body>\n<\/html>\n\n\n\n<!-- Contenedor para el gr\u00e1fico -->\n<div id=\"grafico-container\" style=\"display: flex; justify-content: center; align-items: center; width: 100%;\">\n\n    <!-- Canvas para dispositivos m\u00f3viles -->\n    <canvas id=\"euriborChartMobile\" class=\"chart-canvas\" width=\"300\" height=\"200\"><\/canvas>\n\n    <!-- Canvas para pantallas grandes -->\n    <canvas id=\"euriborChartDesktop\" class=\"chart-canvas\" width=\"500\" height=\"300\" style=\"display:none;\"><\/canvas>\n\n<\/div>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n    \/\/ URL del archivo JSON\n    const jsonUrl = '\/wp-content\/uploads\/data\/generar_euribor.php';\n\n    \/\/ Obtener datos desde el JSON\n    fetch(jsonUrl)\n        .then(response => response.json())\n        .then(data => {\n            \/\/ Obtener solo los \u00faltimos 30 d\u00edas\n            const ultimos30Dias = data.slice(-30); \/\/ Toma los \u00faltimos 30 elementos del array\n            const labels = ultimos30Dias.map(entry => {\n                const fecha = new Date(entry.fecha);\n             \n    const options = { day: '2-digit', month: 'short' }; \/\/ Formato para d\u00eda y mes\n    const fechaFormateada = new Intl.DateTimeFormat('es-ES', options).format(fecha); \/\/ Formato en espa\u00f1ol\n\nreturn fechaFormateada.replace('.', ''); \/\/ Eliminar el punto al final del mes (por ejemplo: \"Dic.\")\n\n\n\n\n\n\n\n            });\n            const values = ultimos30Dias.map(entry => entry.valor);\n\n            \/\/ Funci\u00f3n para crear gr\u00e1fico\n            function crearGrafico(canvasId) {\n                const ctx = document.getElementById(canvasId).getContext('2d');\n                new Chart(ctx, {\n                    type: 'line', \/\/ Tipo de gr\u00e1fico\n                    data: {\n                        labels: labels, \/\/ Fechas\n                        datasets: [{\n                            label: 'Eur\u00edbor (%)',\n                            data: values, \/\/ Valores\n                            borderColor: '#28a745',\n                            borderWidth: 2,\n                            fill: true,\n                            backgroundColor: 'rgba(40, 167, 69, 0.2)'\n                        }]\n                    },\n                    options: {\n                        responsive: true,\n                        maintainAspectRatio: true,\n                        plugins: {\n                            legend: {\n                                display: false \/\/ Esto elimina la leyenda que permite activar\/desactivar la gr\u00e1fica\n                            }\n                        },\n                        scales: {\n                            x: {\n                                grid: {\n                                    display: false \/\/ Oculta la cuadr\u00edcula en el eje X\n                                }\n                            },\n                            y: {\n                                grid: {\n                                    display: false \/\/ Oculta la cuadr\u00edcula en el eje Y\n                                }\n                            }\n                        }\n                    }\n                });\n            }\n\n            \/\/ Mostrar gr\u00e1fico m\u00f3vil o de escritorio seg\u00fan el tama\u00f1o de la pantalla\n            if (window.innerWidth <= 768) {\n                document.getElementById('euriborChartMobile').style.display = 'block';\n                document.getElementById('euriborChartDesktop').style.display = 'none';\n                crearGrafico('euriborChartMobile');\n            } else {\n                document.getElementById('euriborChartMobile').style.display = 'none';\n                document.getElementById('euriborChartDesktop').style.display = 'block';\n                crearGrafico('euriborChartDesktop');\n            }\n\n        })\n        .catch(error => console.error('Error al cargar los datos:', error));\n});\n<\/script>\n\n<style>\n\/* Ajustar el tama\u00f1o del gr\u00e1fico en pantallas grandes *\/\n@media (min-width: 768px) {\n    #euriborChartDesktop {\n        width: 600px !important;\n        height: 360px !important;\n    }\n}\n<\/style>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Eur\u00edbor<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0\/css\/all.min.css\">\n<\/head>\n<body>\n    <div id=\"grafico-titulo\" style=\"text-align:center; font-size: 22px; color: blue; margin: 20px 0;\">\n        <i class=\"fa-solid fa-chart-line\" style=\"color: green; margin-right: 10px;\"><\/i>\n        Mi hipoteca\n    <\/div>\n<\/body>\n<\/html>\n\n\n    <div id=\"contenedor-calculadora\" style=\"display: none;\"> <!-- Contenedor de la tarjeta -->\n        <div style=\"background-color: #f4f4f9; padding: 15px 20px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); margin-bottom: 5px;\">\n            <p style=\"text-align: justify; font-size: 18px; color: black; margin: 0; line-height: 1.2;\" id=\"texto-calculadora\">\n                <!-- Este texto ser\u00e1 din\u00e1mico -->\n            <\/p>\n        <\/div>\n    <\/div>\n    <div id=\"boton-registro\" style=\"display: none; text-align: center; margin-top: 20px;\">\n        <!-- Este div se usar\u00e1 para el mensaje de registro -->\n    <\/div>\n\n    <script>\n        \/\/ Realizar la solicitud al archivo PHP\n        fetch('\/wp-content\/uploads\/data\/msj_personalizado\/msj_personalizado.php')\n            .then(response => {\n                if (!response.ok) {\n                    throw new Error('Error en la respuesta del servidor');\n                }\n                return response.json();\n            })\n            .then(data => {\n                \/\/console.log(data); \/\/ Esto te ayudar\u00e1 a ver la estructura completa de los datos que llegan del PHP\n                const contenedorCalculadora = document.getElementById('contenedor-calculadora');\n                const textoCalculadora = document.getElementById('texto-calculadora');\n                const botonRegistroDiv = document.getElementById('boton-registro');\n\n                if (data.is_logged_in) {\n                    \/\/ Construir el mensaje seg\u00fan el tipo de hipoteca\n                    let mensajePersonalizado = '';\n                    const tipoHipoteca = data.tipo_hipoteca;\n                    const euribor = data.ultimo_euribor;\n                    const mensajeFinal = data.mensaje_final;\n\n                    if (tipoHipoteca === 'variable') {\n                        mensajePersonalizado = `\n                            Hola <strong>${data.nombre}<\/strong>, si recalculamos la cuota de la hipoteca variable que tiene registrada en su cuenta,\n                            usando el<strong> Eur\u00edbor actual de ${euribor}%<\/strong>,\n                            pasar\u00eda a pagar\n                        `;\n                    } else if (tipoHipoteca === 'fija') {\n                        const diferencial = '0.89'; \/\/ Diferencial fijo\n                        mensajePersonalizado = `\n                            Hola <strong>${data.nombre}<\/strong>, si recalculamos la cuota de la hipoteca fija que tiene registrada en su cuenta,\n                            usando el<strong> Eur\u00edbor actual de ${euribor}%<\/strong> y un diferencial de <strong>${diferencial}%<\/strong>,\n                            convirtiendola en una hipoteca variable, pasar\u00eda a pagar\n                        `;\n                    } else if (tipoHipoteca === 'mixta') {\n                        mensajePersonalizado = `\n                            Hola <strong>${data.nombre}<\/strong>, si recalculamos la cuota del tramo variable de la hipoteca mixta que tiene registrada en su cuenta,\n                            usando el<strong> Eur\u00edbor actual de ${euribor}%<\/strong>,\n                            pasar\u00eda a pagar\n                        `;\n                    }\n\n                    \/\/ Determinar si el mensaje es \"la misma cantidad\" o tiene variaci\u00f3n\n                    if (mensajeFinal === \"la misma cantidad\") {\n                        mensajePersonalizado += ` la misma cantidad.`;\n                    } else {\n                        \/\/ Determinar el color seg\u00fan el resultado (si es \"m\u00e1s\" o \"menos\")\n                        const esPositivo = mensajeFinal.includes('m\u00e1s');\n                        const colorResultado = esPositivo ? 'red' : 'green'; \/\/ Rojo si es \"m\u00e1s\", verde si es \"menos\"\n                        const resultadoConColor = mensajeFinal.replace(\n                            \/(.*)(m\u00e1s|menos)\/,\n                            `<span style=\"color: ${colorResultado}; font-weight: bold;\">$1 $2<\/span>`\n                        );\n                        mensajePersonalizado += resultadoConColor;\n                    }\n\n                    \/\/ Mostrar mensaje personalizado\n                    contenedorCalculadora.style.display = 'block'; \/\/ Mostrar tarjeta\n                    textoCalculadora.innerHTML = mensajePersonalizado;\n                } else {\n                    \/\/ Mostrar mensaje personalizado en lugar del bot\u00f3n de registro\n                    const mensajeNoRegistrado = `\n                        <div class=\"custom-message-card\">\n                            <p>\ud83d\udcb0 Consulta a diario c\u00f3mo cambia tu hipoteca con el Eur\u00edbor. <a href=\"\/index.php\/registro\" class=\"custom-link\">Reg\u00edstrate<\/a> ahora y descubre c\u00f3mo afecta a tu cuota.\n                              \n                            <\/p>\n                        <\/div>\n                    `;\n\n                    \/\/ Mostrar el mensaje en el div de \"boton-registro\"\n                    botonRegistroDiv.style.display = 'block';\n                    botonRegistroDiv.innerHTML = mensajeNoRegistrado;\n                }\n            })\n            .catch(error => {\n                console.error('Error:', error);\n                document.getElementById('texto-calculadora').innerText = 'Error al cargar la informaci\u00f3n.';\n            });\n    <\/script>\n    \n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Eur\u00edbor<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0\/css\/all.min.css\">\n<\/head>\n<body>\n    <div id=\"grafico-titulo\" style=\"text-align:center; font-size: 22px; color: blue; margin: 20px 0;\">\n        <i class=\"fa-solid fa-chart-line\" style=\"color: green; margin-right: 10px;\"><\/i>\n        Evoluci\u00f3n mensual Euribor\n    <\/div>\n<\/body>\n<\/html>\n\n\n\n<!-- Contenedor para el gr\u00e1fico -->\n<div id=\"grafico-container-4anios\" style=\"display: flex; justify-content: center; align-items: center; width: 100%;\">\n\n    <!-- Canvas para dispositivos m\u00f3viles -->\n    <canvas id=\"euriborChart4AniosMobile\" class=\"chart-canvas\" width=\"300\" height=\"200\" style=\"display:none;\"><\/canvas>\n\n    <!-- Canvas para pantallas grandes -->\n    <canvas id=\"euriborChart4AniosDesktop\" class=\"chart-canvas\" width=\"500\" height=\"300\" style=\"display:none;\"><\/canvas>\n\n<\/div>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n    \/\/ URL del archivo JSON\n    const jsonUrl = '\/wp-content\/uploads\/data\/generar_euribor_3a\u00f1os.php';\n\n    \/\/ Obtener datos desde el JSON\n    fetch(jsonUrl)\n        .then(response => response.json())\n        .then(data => {\n            if (data.error) {\n                console.error('Error:', data.error);\n                return;\n            }\n\n            \/\/ Crear arrays para los meses y los valores de cada a\u00f1o\n            const labels = []; \/\/ Meses (Enero, Febrero, etc.)\n            const datasets = [];\n\n            \/\/ Crear un conjunto de datos solo para los a\u00f1os que tienen datos\n            const a\u00f1os = [];\n            data.forEach(entry => {\n                const fecha = new Date(entry.fecha);\n                const a\u00f1o = fecha.getFullYear();\n\n                if (!a\u00f1os.includes(a\u00f1o)) {\n                    a\u00f1os.push(a\u00f1o);\n                }\n            });\n\n            \/\/ Asegurarnos de que los a\u00f1os est\u00e9n ordenados de forma descendente\n            a\u00f1os.sort((a, b) => b - a); \/\/ Ordenar de mayor a menor\n\n            a\u00f1os.forEach(a\u00f1o => {\n                const valoresPorA\u00f1o = [];\n                data.forEach(entry => {\n                    const fecha = new Date(entry.fecha);\n                    if (fecha.getFullYear() === a\u00f1o) {\n                        \/\/ Convertir el mes a May\u00fascula\n                        const mes = fecha.toLocaleString('es-ES', { month: 'long' }).replace(\/^.\/, (str) => str.toUpperCase());\n                        if (!labels.includes(mes)) {\n                            labels.push(mes);\n                        }\n                        valoresPorA\u00f1o.push(entry.valor);\n                    }\n                });\n\n                \/\/ Crear el dataset para cada a\u00f1o\n                const color = a\u00f1o === new Date().getFullYear() ? 'rgba(40, 167, 69, 1)' : (a\u00f1o === new Date().getFullYear() - 1 ? 'rgba(128, 0, 128, 1)' : (a\u00f1o === new Date().getFullYear() - 2 ? 'rgba(255, 193, 7, 1)' : 'rgba(0, 128, 0, 1)'));\n                datasets.push({\n                    label: `${a\u00f1o}`,\n                    data: valoresPorA\u00f1o,\n                    borderColor: color,\n                    borderWidth: 2,\n                    fill: false\n                });\n            });\n\n            \/\/ Funci\u00f3n para crear gr\u00e1fico\n            function crearGrafico(canvasId) {\n                const ctx = document.getElementById(canvasId).getContext('2d');\n                new Chart(ctx, {\n                    type: 'line',\n                    data: {\n                        labels: labels,\n                        datasets: datasets\n                    },\n                    options: {\n                        responsive: true,\n                        maintainAspectRatio: true,\n                        scales: {\n                            y: {\n                                beginAtZero: false,\n                                grid: {\n                                    display: false \/\/ Quitar la malla en el eje Y\n                                }\n                            },\n                            x: {\n                                grid: {\n                                    display: false \/\/ Quitar la malla en el eje X\n                                }\n                            }\n                        }\n                    }\n                });\n            }\n\n            \/\/ Mostrar gr\u00e1fico m\u00f3vil o de escritorio seg\u00fan el tama\u00f1o de la pantalla\n            if (window.innerWidth <= 768) {\n                document.getElementById('euriborChart4AniosMobile').style.display = 'block';\n                crearGrafico('euriborChart4AniosMobile');\n            } else {\n                document.getElementById('euriborChart4AniosDesktop').style.display = 'block';\n                crearGrafico('euriborChart4AniosDesktop');\n            }\n\n        })\n        .catch(error => console.error('Error al cargar los datos:', error));\n});\n<\/script>\n\n<style>\n\/* Ajustar el tama\u00f1o del gr\u00e1fico en pantallas grandes *\/\n@media (min-width: 768px) {\n    #euriborChart4AniosDesktop {\n        width: 600px !important;\n        height: 360px !important;\n    }\n}\n<\/style>\n\n\n<style>\n\n.mensaje-inicial-card {\n    background: #f4f4f9 !important;\n    border: 1px solid #ddd;\n    border-radius: 8px;\n    padding: 20px;\n    text-align: left;\n    box-shadow: 0 4px 6px rgba(0,0,0,0.1);\n    width: 100%;\n    max-width: 900px;\n    min-width: 300px;\n    box-sizing: border-box;\n    margin: 0 auto;\n    font-size: 1em;\n    word-wrap: break-word;\n    overflow-wrap: break-word;\n margin-bottom: 20px; \/* Espacio adicional debajo del cuadro *\/\n}\n\n\/* Ajuste para pantallas grandes *\/\n@media (min-width: 1024px) {\n    .mensaje-inicial-card {\n        max-width: 100%;\n    }\n}\n\n\/* Ajuste para m\u00f3viles *\/\n@media (max-width: 480px) {\n    .mensaje-inicial-card {\n        width: 100%;\n        padding: 15px;\n    }\n}\n\n.mensaje-inicial-card p {\n    margin-top: 5px;\n    margin-bottom: 5px;\n}\n\n\/* Reducir el tama\u00f1o del bullet *\/\n.mensaje-inicial-card .bullet {\n    font-size: 14px; \/* Ajustar seg\u00fan el tama\u00f1o que desees *\/\n    margin-right: 10px; \/* Espacio entre el bullet y el texto *\/\n}\n\n\/* T\u00edtulos en negrita *\/\n.mensaje-inicial-card .titulo {\n    font-weight: bold;\n}\n\n\/* Texto m\u00e1s peque\u00f1o debajo de los t\u00edtulos *\/\n.mensaje-inicial-card .subtitulo {\n    font-size: 0.9em;\n    color: #555; \/* Color m\u00e1s suave para diferenciarlo *\/\n}\n\n\n\n\n    <\/style><div class=\"mensaje-inicial-card\"><p>Actualizaci\u00f3n del Eur\u00edbor: 2.723%, con un cambio de -0.033 puntos desde la \u00faltima cifra registrada.<\/p><p><strong>\ud83d\udcca Estado del Eur\u00edbor:<\/strong><\/p><p><span class='bullet'>\u25aa\ufe0f<\/span>7 d\u00edas atr\u00e1s: 2.680% (0.043)<\/p><p><span class='bullet'>\u25aa\ufe0f<\/span>Rango mensual: 2.680% - 2.872%<\/p><p><strong>\ud83d\udcc9 Evoluci\u00f3n de las cuotas hipotecarias<\/strong><\/p><p><span class='bullet'>\u25aa\ufe0f<\/span>Eur\u00edbor mensual: 2.773%<\/p><p><span class='bullet'>\u25aa\ufe0f<\/span>Para un pr\u00e9stamo de 140.000\u20ac a 30 a\u00f1os con Eur\u00edbor +1, la cuota mensual que se tendr\u00eda que pagar ser\u00eda de 650.19\u20ac.<\/p><\/div>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Eur\u00edbor<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0\/css\/all.min.css\">\n<\/head>\n<body>\n    <div id=\"grafico-titulo\" style=\"text-align:center; font-size: 22px; color: blue; margin: 20px 0;\">\n        <i class=\"fa-solid fa-chart-line\" style=\"color: green; margin-right: 10px;\"><\/i>\n        Simulador\n    <\/div>\n<\/body>\n<\/html>\n\n\n\n<div class=\"custom-message-card\">\n    <p>\ud83c\udfe1 Simula tu hipoteca y obt\u00e9n un informe detallado. Compara opciones fijas, variables y mixtas, y desc\u00e1rgalo o rec\u00edbelo por email. <a href=\"index.php\/simulador\" class=\"custom-link\">Accede al simulador de hipotecas<\/a><\/p>\n<\/div>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Eur\u00edbor<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0\/css\/all.min.css\">\n<\/head>\n<body>\n    <div id=\"grafico-titulo\" style=\"text-align:center; font-size: 22px; color: blue; margin: 20px 0;\">\n        <i class=\"fa-solid fa-chart-line\" style=\"color: green; margin-right: 10px;\"><\/i>\n        \u00daltimas Noticias\n    <\/div>\n<\/body>\n<\/html>\n\n\n<ul class=\"wp-block-latest-posts__list has-dates wp-block-latest-posts\"><li><div class=\"wp-block-latest-posts__featured-image aligncenter\"><a href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/16\/euribor-hoy-2026-04-16\/\" aria-label=\"Valor del Eur\u00edbor hoy (16 de abril de 2026): 2.723%\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"196\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/casa-hecha-con-billete.jpg\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" style=\"max-height:450px;\" \/><\/a><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/16\/euribor-hoy-2026-04-16\/\">Valor del Eur\u00edbor hoy (16 de abril de 2026): 2.723%<\/a><time datetime=\"2026-04-16T12:30:53+02:00\" class=\"wp-block-latest-posts__post-date\">16 de abril de 2026<\/time><div class=\"wp-block-latest-posts__post-excerpt\">El Eur\u00edbor de hoy alcanza el 2.723%, con un cambio de -0.033 respecto al valor previo. La media de este mes se mantiene en torno al 2.773%. El Eur\u00edbor (Euro &#8230; <a title=\"Valor del Eur\u00edbor hoy (16 de abril de 2026): 2.723%\" class=\"read-more\" href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/16\/euribor-hoy-2026-04-16\/\" aria-label=\"Leer m\u00e1s sobre Valor del Eur\u00edbor hoy (16 de abril de 2026): 2.723%\">Leer m\u00e1s<\/a><\/div><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<\/ul>\n\n<ul class=\"wp-block-latest-posts__list is-grid columns-2 has-dates wp-block-latest-posts\"><li><div class=\"wp-block-latest-posts__featured-image alignleft\"><a href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/09\/euribor-hoy-2026-04-09\/\" aria-label=\"Eur\u00edbor diario, 9 de abril de 2026: marcado en 2.680%\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"98\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/casa-hecha-con-billete.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:100px;max-height:100px;\" \/><\/a><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/09\/euribor-hoy-2026-04-09\/\">Eur\u00edbor diario, 9 de abril de 2026: marcado en 2.680%<\/a><time datetime=\"2026-04-09T12:04:33+02:00\" class=\"wp-block-latest-posts__post-date\">9 de abril de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><a href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/08\/euribor-hoy-2026-04-08\/\" aria-label=\"Leve bajada del Eur\u00edbor hoy 8 de abril, quedandose en 2.860%\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/casa-nubes.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:100px;max-height:100px;\" \/><\/a><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/08\/euribor-hoy-2026-04-08\/\">Leve bajada del Eur\u00edbor hoy 8 de abril, quedandose en 2.860%<\/a><time datetime=\"2026-04-08T12:12:25+02:00\" class=\"wp-block-latest-posts__post-date\">8 de abril de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><a href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/07\/euribor-hoy-2026-04-07\/\" aria-label=\"Valor del Eur\u00edbor hoy (7 de abril de 2026): 2.872%\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"86\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/mejora-euribor.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:100px;max-height:100px;\" \/><\/a><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/07\/euribor-hoy-2026-04-07\/\">Valor del Eur\u00edbor hoy (7 de abril de 2026): 2.872%<\/a><time datetime=\"2026-04-07T12:19:30+02:00\" class=\"wp-block-latest-posts__post-date\">7 de abril de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><a href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/02\/euribor-hoy-2026-04-02\/\" aria-label=\"Eur\u00edbor a fecha de 2 de abril de 2026: se sit\u00faa en 2.799%\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"86\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/mejora-euribor.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:100px;max-height:100px;\" \/><\/a><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/02\/euribor-hoy-2026-04-02\/\">Eur\u00edbor a fecha de 2 de abril de 2026: se sit\u00faa en 2.799%<\/a><time datetime=\"2026-04-02T13:19:33+02:00\" class=\"wp-block-latest-posts__post-date\">2 de abril de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<\/ul>\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Eur\u00edbor<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0\/css\/all.min.css\">\n<\/head>\n<body>\n    <div id=\"grafico-titulo\" style=\"text-align:center; font-size: 22px; color: blue; margin: 20px 0;\">\n        <i class=\"fa-solid fa-chart-line\" style=\"color: green; margin-right: 10px;\"><\/i>\n        Tabla de Euribor mensual\n    <\/div>\n<\/body>\n<\/html>\n\n\n    <div id=\"tabla-euribor-container\">\n        <label for=\"a\u00f1o-selector-mensual\">Selecciona un a\u00f1o:<\/label>\n        <select id=\"a\u00f1o-selector-mensual\">\n                            <option value=\"1998\">1998<\/option>\n                            <option value=\"1999\">1999<\/option>\n                            <option value=\"2000\">2000<\/option>\n                            <option value=\"2001\">2001<\/option>\n                            <option value=\"2002\">2002<\/option>\n                            <option value=\"2003\">2003<\/option>\n                            <option value=\"2004\">2004<\/option>\n                            <option value=\"2005\">2005<\/option>\n                            <option value=\"2006\">2006<\/option>\n                            <option value=\"2007\">2007<\/option>\n                            <option value=\"2008\">2008<\/option>\n                            <option value=\"2009\">2009<\/option>\n                            <option value=\"2010\">2010<\/option>\n                            <option value=\"2011\">2011<\/option>\n                            <option value=\"2012\">2012<\/option>\n                            <option value=\"2013\">2013<\/option>\n                            <option value=\"2014\">2014<\/option>\n                            <option value=\"2015\">2015<\/option>\n                            <option value=\"2016\">2016<\/option>\n                            <option value=\"2017\">2017<\/option>\n                            <option value=\"2018\">2018<\/option>\n                            <option value=\"2019\">2019<\/option>\n                            <option value=\"2020\">2020<\/option>\n                            <option value=\"2021\">2021<\/option>\n                            <option value=\"2022\">2022<\/option>\n                            <option value=\"2023\">2023<\/option>\n                            <option value=\"2024\">2024<\/option>\n                            <option value=\"2025\">2025<\/option>\n                            <option value=\"2026\">2026<\/option>\n                    <\/select>\n        <div id=\"tabla-euribor-wrapper\" style=\"overflow-x: auto;\">\n            <table id=\"tabla-euribor\" style=\"width: 100%; border-collapse: collapse; margin-top: 10px;\">\n                <thead>\n                    <tr>\n                        <th>Mes<\/th>\n                        <th>Valor Euribor<\/th>\n                        <th>Variaci\u00f3n Mensual<\/th>\n                        <th>Variaci\u00f3n Semestral<\/th>\n                        <th>Variaci\u00f3n Anual<\/th>\n                    <\/tr>\n                <\/thead>\n                <tbody>\n                    <tr>\n                        <td colspan=\"5\" style=\"text-align: center;\">Cargando datos...<\/td>\n                    <\/tr>\n                <\/tbody>\n            <\/table>\n        <\/div>\n    <\/div>\n    \n\n\n\n<div class=\"custom-message-card\">\n    <p>\ud83d\udcca Consulta la evoluci\u00f3n hist\u00f3rica del Eur\u00edbor con todos sus valores diarios y mensuales desde su origen. Analiza las tendencias y revisa datos actualizados. <a href=\"index.php\/historico\" class=\"custom-link\">Ver hist\u00f3rico del Eur\u00edbor<\/a>.<\/p>\n<\/div>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Eur\u00edbor<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0\/css\/all.min.css\">\n<\/head>\n<body>\n    <div id=\"grafico-titulo\" style=\"text-align:center; font-size: 22px; color: blue; margin: 20px 0;\">\n        <i class=\"fa-solid fa-chart-line\" style=\"color: green; margin-right: 10px;\"><\/i>\n        M\u00e1s Noticias\n    <\/div>\n<\/body>\n<\/html>\n\n\n<ul class=\"wp-block-latest-posts__list has-dates wp-block-latest-posts\"><li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/02\/hucha.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"C\u00e1lculo de revisi\u00f3n anual de hipoteca con Eur\u00edbor\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/03\/revision-anual-hipoteca-como-calcular\/\">Revisi\u00f3n anual de la hipoteca: Qu\u00e9 es, c\u00f3mo se calcula y c\u00f3mo te afecta<\/a><time datetime=\"2026-04-03T12:44:08+02:00\" class=\"wp-block-latest-posts__post-date\">3 de abril de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"86\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/alquiler.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/04\/01\/euribor-hoy-2026-04-01-3\/\">Hoy comenzamos abril con el Eur\u00edbor bajando hasta el 2.845%<\/a><time datetime=\"2026-04-01T12:26:05+02:00\" class=\"wp-block-latest-posts__post-date\">1 de abril de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/brote-euribor.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/31\/euribor-hoy-2026-03-31\/\">Eur\u00edbor diario, 31 de marzo de 2026: marcado en 2.870%<\/a><time datetime=\"2026-03-31T12:39:09+02:00\" class=\"wp-block-latest-posts__post-date\">31 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"94\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/euribor-hipoteca26F.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/30\/euribor-hoy-2026-03-30\/\">Eur\u00edbor hoy, 30 de marzo de 2026: alcanza el 2.932%<\/a><time datetime=\"2026-03-30T12:08:36+02:00\" class=\"wp-block-latest-posts__post-date\">30 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"86\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/alquiler.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/27\/euribor-hoy-2026-03-27-2\/\">Valor del Eur\u00edbor hoy (27 de marzo de 2026): 2.860%<\/a><time datetime=\"2026-03-27T12:11:54+01:00\" class=\"wp-block-latest-posts__post-date\">27 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"106\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/hipoteca-casa.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/26\/euribor-hoy-2026-03-26\/\">Eur\u00edbor de hoy 26 de marzo de 2026: fijado en 2.820%<\/a><time datetime=\"2026-03-26T12:14:46+01:00\" class=\"wp-block-latest-posts__post-date\">26 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"86\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/mejora-euribor.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/25\/euribor-hoy-2026-03-25\/\">Eur\u00edbor de hoy 25 de marzo de 2026: fijado en 2.812%<\/a><time datetime=\"2026-03-25T12:06:20+01:00\" class=\"wp-block-latest-posts__post-date\">25 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/vivienda.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/24\/euribor-hoy-2026-03-24-3\/\">Eur\u00edbor de hoy 24 de marzo de 2026: fijado en 2.929%<\/a><time datetime=\"2026-03-24T12:34:28+01:00\" class=\"wp-block-latest-posts__post-date\">24 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"94\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/euribor-hipoteca26F.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/23\/euribor-hoy-2026-03-23\/\">Eur\u00edbor diario, 23 de marzo de 2026: marcado en 2.740%<\/a><time datetime=\"2026-03-23T12:20:25+01:00\" class=\"wp-block-latest-posts__post-date\">23 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/08\/edificio-en-construccion.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Hipotecas\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/22\/registro-gratis-euribor365\/\">\u00bfPor qu\u00e9 registrarte en euribor365?<\/a><time datetime=\"2026-03-22T19:25:52+01:00\" class=\"wp-block-latest-posts__post-date\">22 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/casa-en-construccion.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/20\/euribor-hoy-2026-03-20\/\">Eur\u00edbor diario, 20 de marzo de 2026: marcado en 2.658%<\/a><time datetime=\"2026-03-20T12:25:30+01:00\" class=\"wp-block-latest-posts__post-date\">20 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"94\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/euribor-hipoteca26F.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/19\/euribor-hoy-2026-03-19\/\">Eur\u00edbor a fecha de 19 de marzo de 2026: se sit\u00faa en 2.524%<\/a><time datetime=\"2026-03-19T12:34:56+01:00\" class=\"wp-block-latest-posts__post-date\">19 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2026\/03\/subida-euribor.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Subida del Euribor\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/18\/subida-euribor-interanual-marzo\/\">El Eur\u00edbor cambia de tendencia: marzo apunta a la primera subida interanual en un a\u00f1o<\/a><time datetime=\"2026-03-18T12:48:27+01:00\" class=\"wp-block-latest-posts__post-date\">18 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/brote-euribor.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/18\/euribor-hoy-2026-03-18\/\">Por f\u00edn una bajada. El Euribor hoy, 18 de marzo baja hasta el 2.528%<\/a><time datetime=\"2026-03-18T12:24:34+01:00\" class=\"wp-block-latest-posts__post-date\">18 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"94\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/llave-sobre-casa.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/17\/euribor-hoy-2026-03-17-3\/\">Eur\u00edbor diario, 17 de marzo de 2026: marcado en 2.547%<\/a><time datetime=\"2026-03-17T12:30:31+01:00\" class=\"wp-block-latest-posts__post-date\">17 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"86\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/hipoteca.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/16\/euribor-hoy-2026-03-16\/\">Eur\u00edbor de hoy 16 de marzo de 2026: fijado en 2.540%<\/a><time datetime=\"2026-03-16T12:28:49+01:00\" class=\"wp-block-latest-posts__post-date\">16 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"84\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2026\/03\/guerra-iran.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Guerra ir\u00e1n\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/14\/guerra-de-iran-y-euribor\/\">La guerra con Ir\u00e1n sacude los mercados: petr\u00f3leo al alza y presi\u00f3n sobre el Eur\u00edbor<\/a><time datetime=\"2026-03-14T20:16:07+01:00\" class=\"wp-block-latest-posts__post-date\">14 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/casa-en-construccion.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/13\/euribor-hoy-2026-03-13\/\">Eur\u00edbor de hoy 13 de marzo de 2026: fijado en 2.522%<\/a><time datetime=\"2026-03-13T12:32:40+01:00\" class=\"wp-block-latest-posts__post-date\">13 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"86\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/mejora-euribor.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/12\/euribor-hoy-2026-03-12\/\">Eur\u00edbor de hoy 12 de marzo de 2026: fijado en 2.456%<\/a><time datetime=\"2026-03-12T13:10:19+01:00\" class=\"wp-block-latest-posts__post-date\">12 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<li><div class=\"wp-block-latest-posts__featured-image alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"86\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/alquiler.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" style=\"max-width:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/03\/11\/euribor-hoy-2026-03-11-2\/\">Eur\u00edbor a fecha de 11 de marzo de 2026: se sit\u00faa en 2.369%<\/a><time datetime=\"2026-03-11T13:09:27+01:00\" class=\"wp-block-latest-posts__post-date\">11 de marzo de 2026<\/time><hr style=\"border: 0; border-top: 1px solid #0056b3; margin: 15px 0;\"><\/li>\n<\/ul>\n\n\n<p><strong><\/strong> <\/p>\n<p>\n <a href=\"https:\/\/x.com\/intent\/tweet?url=https:\/\/euribor365.es\/&#038;text=Plataforma con informaci\u00f3n sobre el Eur\u00edbor\" target=\"_blank\" title=\"Compartir en X\">\n   <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn-icons-png.flaticon.com\/512\/733\/733579.png\" alt=\"X\" width=\"24\" height=\"24\" style=\"vertical-align: middle; margin-right: 10px;\">\n  <\/a>\n  <a href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/euribor365.es\/\" target=\"_blank\" title=\"Compartir en Facebook\">\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/0\/05\/Facebook_Logo_(2019).png\" alt=\"Facebook\" width=\"24\" height=\"24\" style=\"vertical-align: middle; margin-right: 10px;\">\n  <\/a>\n  <a href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https:\/\/euribor365.es\/\" target=\"_blank\" title=\"Compartir en LinkedIn\">\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/c\/ca\/LinkedIn_logo_initials.png\" alt=\"LinkedIn\" width=\"24\" height=\"24\" style=\"vertical-align: middle; margin-right: 10px;\">\n  <\/a>\n  <a href=\"https:\/\/t.me\/share\/url?url=https:\/\/euribor365.es\/&#038;text=Plataforma con informaci\u00f3n sobre el Eur\u00edbor\" target=\"_blank\" title=\"Compartir en Telegram\">\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/8\/82\/Telegram_logo.svg\" alt=\"Telegram\" width=\"24\" height=\"24\" style=\"vertical-align: middle; margin-right: 10px;\">\n  <\/a>\n  <a href=\"https:\/\/www.instagram.com\/?url=https:\/\/euribor365.es\/\" target=\"_blank\" title=\"Compartir en Instagram\">\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/e\/e7\/Instagram_logo_2016.svg\" alt=\"Instagram\" width=\"24\" height=\"24\" style=\"vertical-align: middle; margin-right: 10px;\">\n  <\/a>\n<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Euribor hoy: Consulta a diario la evoluci\u00f3n del Eur\u00edbor Eur\u00edbor Evoluci\u00f3n diaria Euribor Eur\u00edbor Mi hipoteca Eur\u00edbor Evoluci\u00f3n mensual Euribor Eur\u00edbor Simulador \ud83c\udfe1 Simula tu hipoteca y obt\u00e9n un informe detallado. Compara opciones fijas, variables y mixtas, y desc\u00e1rgalo o rec\u00edbelo por email. Accede al simulador de hipotecas Eur\u00edbor \u00daltimas Noticias Eur\u00edbor Tabla de Euribor &#8230; <a title=\"Inicio\" class=\"read-more\" href=\"https:\/\/euribor365.es\/\" aria-label=\"Leer m\u00e1s sobre Inicio\">Leer m\u00e1s<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-6","page","type-page","status-publish"],"_links":{"self":[{"href":"https:\/\/euribor365.es\/index.php\/wp-json\/wp\/v2\/pages\/6","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/euribor365.es\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/euribor365.es\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/euribor365.es\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/euribor365.es\/index.php\/wp-json\/wp\/v2\/comments?post=6"}],"version-history":[{"count":364,"href":"https:\/\/euribor365.es\/index.php\/wp-json\/wp\/v2\/pages\/6\/revisions"}],"predecessor-version":[{"id":4180,"href":"https:\/\/euribor365.es\/index.php\/wp-json\/wp\/v2\/pages\/6\/revisions\/4180"}],"wp:attachment":[{"href":"https:\/\/euribor365.es\/index.php\/wp-json\/wp\/v2\/media?parent=6"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}