




{"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 Julio de 2026<\/h3>\n        <p><strong>Eur\u00edbor hoy:<\/strong> <span class='valor-euribor' style='font-size: 1.1em;'>2.876%<\/span><\/p>\n        <p style='color: green; font-weight: bold;' >\n            <strong>Variaci\u00f3n diaria:<\/strong> <span class='simbolo-variacion'>\u2193 -0.040<\/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.78%<\/span>\n        <\/p>\n        <p style='color: green; font-weight: bold;' >\n            <strong>Variaci\u00f3n mensual:<\/strong> <span class='simbolo-variacion'>\u2193 -0.018<\/span>\n        <\/p>\n        <p style='color: red; font-weight: bold;' >\n            <strong>Variaci\u00f3n interanual:<\/strong> <span class='simbolo-variacion'>\u2191 +0.701<\/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>Hoy, el Eur\u00edbor diario marca 2.876%, registrando un cambio de -0.040 puntos respecto a la jornada anterior.<\/p><p><strong>\ud83d\udcca Variaci\u00f3n reciente:<\/strong><\/p><p><span class='bullet'>\u25aa\ufe0f<\/span>7 d\u00edas atr\u00e1s: 2.813% (0.063)<\/p><p><span class='bullet'>\u25aa\ufe0f<\/span>Rango mensual: 2.693% - 2.916%<\/p><p><strong>\ud83d\udcc9 Evoluci\u00f3n de las cuotas hipotecarias<\/strong><\/p><p><span class='bullet'>\u25aa\ufe0f<\/span>Eur\u00edbor mensual: 2.780%<\/p><p><span class='bullet'>\u25aa\ufe0f<\/span>Si tomamos una hipoteca de 140.000\u20ac a 30 a\u00f1os con un inter\u00e9s Eur\u00edbor +1, se pagar\u00eda una cuota mensual de 650.75\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\/07\/16\/euribor-hoy-2026-07-16\/\" aria-label=\"Valor del Eur\u00edbor hoy (16 de julio de 2026): 2.876%\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/casa-en-construccion.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\/07\/16\/euribor-hoy-2026-07-16\/\">Valor del Eur\u00edbor hoy (16 de julio de 2026): 2.876%<\/a><time datetime=\"2026-07-16T13:40:44+02:00\" class=\"wp-block-latest-posts__post-date\">16 de julio de 2026<\/time><div class=\"wp-block-latest-posts__post-excerpt\">Hoy el Eur\u00edbor a 12 meses marca 2.876%, variando -0.040 frente a la \u00faltima jornada h\u00e1bil. La media mensual actual se sit\u00faa en 2.780%. El Eur\u00edbor (Euro Interbank Offered Rate) &#8230; <a title=\"Valor del Eur\u00edbor hoy (16 de julio de 2026): 2.876%\" class=\"read-more\" href=\"https:\/\/euribor365.es\/index.php\/2026\/07\/16\/euribor-hoy-2026-07-16\/\" aria-label=\"Leer m\u00e1s sobre Valor del Eur\u00edbor hoy (16 de julio de 2026): 2.876%\">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\/07\/15\/euribor-francia-espana\/\" aria-label=\"\u00bfPor qu\u00e9 las familias espa\u00f1olas dependen m\u00e1s del eur\u00edbor que las francesas?\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"98\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2026\/07\/Francia-Espana-Euribor.png\" 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\/07\/15\/euribor-francia-espana\/\">\u00bfPor qu\u00e9 las familias espa\u00f1olas dependen m\u00e1s del eur\u00edbor que las francesas?<\/a><time datetime=\"2026-07-15T19:55:32+02:00\" class=\"wp-block-latest-posts__post-date\">15 de julio 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\/07\/14\/euribor-hoy-2026-07-14-3\/\" aria-label=\"Eur\u00edbor a fecha de 14 de julio de 2026: se sit\u00faa en 2.825%\"><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"100\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/calcular-vivienda.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\/07\/14\/euribor-hoy-2026-07-14-3\/\">Eur\u00edbor a fecha de 14 de julio de 2026: se sit\u00faa en 2.825%<\/a><time datetime=\"2026-07-14T12:37:05+02:00\" class=\"wp-block-latest-posts__post-date\">14 de julio 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\/07\/13\/euribor-hoy-2026-07-13\/\" aria-label=\"Eur\u00edbor hoy, 13 de julio de 2026: alcanza el 2.800%\"><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:100px;max-height:100px;\" \/><\/a><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/07\/13\/euribor-hoy-2026-07-13\/\">Eur\u00edbor hoy, 13 de julio de 2026: alcanza el 2.800%<\/a><time datetime=\"2026-07-13T12:08:20+02:00\" class=\"wp-block-latest-posts__post-date\">13 de julio 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\/07\/10\/euribor-hoy-2026-07-10\/\" aria-label=\"Eur\u00edbor de hoy 10 de julio de 2026: fijado en 2.831%\"><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:100px;max-height:100px;\" \/><\/a><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/07\/10\/euribor-hoy-2026-07-10\/\">Eur\u00edbor de hoy 10 de julio de 2026: fijado en 2.831%<\/a><time datetime=\"2026-07-10T12:17:28+02:00\" class=\"wp-block-latest-posts__post-date\">10 de julio 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\/2026\/07\/Mejores-hipotecas-julio.png\" 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\/07\/08\/mejores-hipotecas-julio-2026\/\">Mejores hipotecas de julio de 2026<\/a><time datetime=\"2026-07-08T18:20:30+02:00\" class=\"wp-block-latest-posts__post-date\">8 de julio 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=\"101\" src=\"https:\/\/euribor365.es\/wp-content\/uploads\/2025\/10\/hipoteca-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\/07\/02\/euribor-hoy-2026-07-02\/\">Eur\u00edbor diario, 2 de julio de 2026: marcado en 2.733%<\/a><time datetime=\"2026-07-02T12:30:26+02:00\" class=\"wp-block-latest-posts__post-date\">2 de julio 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\/07\/01\/euribor-hoy-2026-07-01\/\">Eur\u00edbor a fecha de 1 de julio de 2026: se sit\u00faa en 2.727%<\/a><time datetime=\"2026-07-01T12:49:00+02:00\" class=\"wp-block-latest-posts__post-date\">1 de julio 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\/06\/30\/euribor-hoy-2026-06-30\/\">Eur\u00edbor diario, 30 de junio de 2026: marcado en 2.728%<\/a><time datetime=\"2026-06-30T13:31:04+02:00\" class=\"wp-block-latest-posts__post-date\">30 de junio 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\/06\/29\/registro-gratis-euribor365\/\">\u00bfPor qu\u00e9 registrarte en euribor365?<\/a><time datetime=\"2026-06-29T20:28:02+02:00\" class=\"wp-block-latest-posts__post-date\">29 de junio 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=\"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:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/06\/29\/euribor-hoy-2026-06-29\/\">Eur\u00edbor de hoy 29 de junio de 2026: fijado en 2.732%<\/a><time datetime=\"2026-06-29T12:33:36+02:00\" class=\"wp-block-latest-posts__post-date\">29 de junio 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\/06\/26\/euribor-hoy-2026-06-26\/\">Eur\u00edbor a fecha de 26 de junio de 2026: se sit\u00faa en 2.764%<\/a><time datetime=\"2026-06-26T12:57:42+02:00\" class=\"wp-block-latest-posts__post-date\">26 de junio 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\/06\/25\/euribor-hoy-2026-06-25\/\">Eur\u00edbor hoy, 25 de junio de 2026: alcanza el 2.785%<\/a><time datetime=\"2026-06-25T12:44:30+02:00\" class=\"wp-block-latest-posts__post-date\">25 de junio 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\/06\/24\/euribor-hoy-2026-06-24\/\">Eur\u00edbor hoy, 24 de junio de 2026: alcanza el 2.781%<\/a><time datetime=\"2026-06-24T13:27:36+02:00\" class=\"wp-block-latest-posts__post-date\">24 de junio 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=\"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:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/06\/23\/euribor-hoy-2026-06-23\/\">Eur\u00edbor de hoy 23 de junio de 2026: fijado en 2.817%<\/a><time datetime=\"2026-06-23T14:08:02+02:00\" class=\"wp-block-latest-posts__post-date\">23 de junio 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=\"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:75px;max-height:75px;\" \/><\/div><a class=\"wp-block-latest-posts__post-title\" href=\"https:\/\/euribor365.es\/index.php\/2026\/06\/22\/euribor-hoy-2026-06-22\/\">Eur\u00edbor de hoy 22 de junio de 2026: fijado en 2.809%<\/a><time datetime=\"2026-06-22T12:14:02+02:00\" class=\"wp-block-latest-posts__post-date\">22 de junio 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\/06\/19\/euribor-hoy-2026-06-19\/\">Eur\u00edbor hoy, 19 de junio de 2026: alcanza el 2.789%<\/a><time datetime=\"2026-06-19T12:14:02+02:00\" class=\"wp-block-latest-posts__post-date\">19 de junio 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\/06\/18\/euribor-hoy-2026-06-18\/\">Eur\u00edbor de hoy 18 de junio de 2026: fijado en 2.748%<\/a><time datetime=\"2026-06-18T13:10:14+02:00\" class=\"wp-block-latest-posts__post-date\">18 de junio 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\/06\/17\/euribor-hoy-2026-06-17\/\">Valor del Eur\u00edbor hoy (17 de junio de 2026): 2.759%<\/a><time datetime=\"2026-06-17T13:37:09+02:00\" class=\"wp-block-latest-posts__post-date\">17 de junio 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\/06\/16\/euribor-hoy-2026-06-16\/\">Eur\u00edbor a fecha de 16 de junio de 2026: se sit\u00faa en 2.755%<\/a><time datetime=\"2026-06-16T12:29:44+02:00\" class=\"wp-block-latest-posts__post-date\">16 de junio 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\/06\/15\/euribor-hoy-2026-06-15\/\">Eur\u00edbor a fecha de 15 de junio de 2026: se sit\u00faa en 2.796%<\/a><time datetime=\"2026-06-15T13:09:45+02:00\" class=\"wp-block-latest-posts__post-date\">15 de junio 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\/06\/12\/euribor-hoy-2026-06-12\/\">Eur\u00edbor a fecha de 12 de junio de 2026: se sit\u00faa en 2.874%<\/a><time datetime=\"2026-06-12T13:09:46+02:00\" class=\"wp-block-latest-posts__post-date\">12 de junio 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\/06\/11\/euribor-hoy-2026-06-11\/\">Eur\u00edbor diario, 11 de junio de 2026: marcado en 2.846%<\/a><time datetime=\"2026-06-11T12:32:04+02:00\" class=\"wp-block-latest-posts__post-date\">11 de junio 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\/06\/10\/euribor-hoy-2026-06-10\/\">Valor del Eur\u00edbor hoy (10 de junio de 2026): 2.841%<\/a><time datetime=\"2026-06-10T12:37:37+02:00\" class=\"wp-block-latest-posts__post-date\">10 de junio 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\/hucha.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\/06\/09\/euribor-hoy-2026-06-09\/\">Eur\u00edbor de hoy 9 de junio de 2026: fijado en 2.866%<\/a><time datetime=\"2026-06-09T13:29:27+02:00\" class=\"wp-block-latest-posts__post-date\">9 de junio 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}]}}