{"id":6551,"date":"2025-11-26T19:31:59","date_gmt":"2025-11-27T00:31:59","guid":{"rendered":"https:\/\/todaydollar.com\/?p=6551"},"modified":"2025-11-26T20:01:00","modified_gmt":"2025-11-27T01:01:00","slug":"infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money","status":"publish","type":"post","link":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/","title":{"rendered":"infografia-History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money"},"content":{"rendered":"\n\n<!-- \nPALETTE SELECTION: \"Energetic & Playful\" \/ Vibrant Professional\nPrimary: #4338ca (Indigo-700) - For headers and primary structural elements.\nSecondary: #06b6d4 (Cyan-500) - For data accents and highlights.\nAlert: #ef4444 (Red-500) - For high inflation warnings.\nSuccess: #10b981 (Emerald-500) - For investment\/positive metrics.\nBackground: #f8fafc (Slate-50) - Clean canvas.\nCard Background: #ffffff (White) - Material design cards.\n-->\n\n<!-- \nNARRATIVE PLAN & STRUCTURE:\n1.  **Introduction (The Hook):** Define inflation using the \"Silent Tax\" and \"$20 Bill\" metaphor.\n    * Visual: Single Big Number\/Unicode comparison.\n2.  **The Mechanics (How it Works):** Explain the 3 Causes (Demand, Cost, Expectations).\n    * Visual: Bar Chart comparing impact types (Goal: Compare).\n3.  **Historical Analysis (The Journey):** A timeline of US Inflation from the Great Inflation to Post-Pandemic.\n    * Visual: Line Chart showing CPI % over decades (Goal: Change).\n4.  **The Volcker Moment (Deep Dive):** The relationship between Interest Rates and Inflation.\n    * Visual: Mixed Bar\/Line Chart (Goal: Relationship).\n5.  **Consequences (Purchasing Power):** The \"Ice Cube\" metaphor visualized.\n    * Visual: Area Chart showing the erosion of $100 (Goal: Change).\n6.  **Action Plan (The Solution):** How to protect wealth (Assets vs Cash).\n    * Visual: Doughnut Chart of a resilient portfolio (Goal: Organize\/Composition).\n7.  **Conclusion:** Summary and Call to Action.\n-->\n\n<!-- \nCHART SELECTION JUSTIFICATION (NO SVG CONFIRMATION):\n1.  **Inflation Causes:** Bar Chart (Chart.js). Compares distinct categories with long labels (testing wrapping logic). NO SVG.\n2.  **Historical Trends:** Line Chart (Chart.js). Best for showing change over time (1960-2023). NO SVG.\n3.  **Volcker Era:** Mixed Chart (Chart.js). Compares two variables (Fed Rate vs CPI) to show correlation. NO SVG.\n4.  **Purchasing Power:** Area Chart (Chart.js). Emphasizes the volume of lost value over time. NO SVG.\n5.  **Asset Allocation:** Doughnut Chart (Chart.js). Standard for showing portfolio composition. NO SVG.\n6.  **Process Flows\/Icons:** Implemented using CSS Grid\/Flexbox and Unicode characters. NO SVG. NO MERMAID.\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>Mastering the Silent Tax: US Inflation Infographic<\/title>\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/chart.js\"><\/script>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Roboto:wght@300;400;700;900&#038;display=swap\" rel=\"stylesheet\">\n    \n    <style>\n        body {\n            font-family: 'Roboto', sans-serif;\n            background-color: #f8fafc;\n            color: #1e293b;\n        }\n        \n        \/* Chart Container Strict Styling *\/\n        .chart-container {\n            position: relative;\n            width: 100%;\n            max-width: 800px; \/* Tailwind max-w-3xl approx *\/\n            margin-left: auto;\n            margin-right: auto;\n            height: 350px; \/* Base height *\/\n            max-height: 400px;\n        }\n\n        @media (min-width: 768px) {\n            .chart-container {\n                height: 400px;\n            }\n        }\n\n        \/* Material Design Card Helper *\/\n        .material-card {\n            background-color: white;\n            border-radius: 0.5rem;\n            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);\n            padding: 1.5rem;\n            margin-bottom: 2rem;\n            transition: transform 0.2s;\n        }\n        \n        .material-card:hover {\n            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);\n        }\n\n        .gradient-text {\n            background: linear-gradient(to right, #4338ca, #06b6d4);\n            -webkit-background-clip: text;\n            -webkit-text-fill-color: transparent;\n        }\n    <\/style>\n<\/head>\n<body>\n\n    <!-- Hero Section -->\n    <header class=\"w-full bg-white shadow-md sticky top-0 z-50\">\n        <div class=\"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4 flex justify-between items-center\">\n            <p class=\"text-2xl font-bold text-indigo-800\">Canvas Infographics<\/p>\n            <nav class=\"hidden md:flex space-x-6 text-sm font-medium text-gray-500\">\n                <a href=\"#intro\" class=\"hover:text-indigo-600 transition\">Concept<\/a>\n                <a href=\"#history\" class=\"hover:text-indigo-600 transition\">History<\/a>\n                <a href=\"#volcker\" class=\"hover:text-indigo-600 transition\">The FED<\/a>\n                <a href=\"#action\" class=\"hover:text-indigo-600 transition\">Action Plan<\/a>\n            <\/nav>\n        <\/div>\n    <\/header>\n\n    <main class=\"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8 space-y-12\">\n\n        <!-- 1. INTRO: The Hook -->\n        <section id=\"intro\" class=\"text-center mb-12\">\n            <h2 class=\"text-4xl md:text-5xl font-extrabold mb-4 gradient-text\">Mastering the Silent Tax<\/h2>\n            <p class=\"text-xl text-gray-600 max-w-3xl mx-auto\">\n                Why does the $20 bill in your pocket feel lighter than it did 30 years ago? It\u2019s not magic\u2014it\u2019s <strong>inflation<\/strong>. \n                Understanding this phenomenon is the key to protecting your financial future. Inflation is the constant, silent tax that time levies on your money, eroding purchasing power while you sleep.\n            <\/p>\n        <\/section>\n\n        <!-- 2. CONCEPT: The $20 Bill Comparison (Unicode Visualization) -->\n        <section class=\"grid grid-cols-1 md:grid-cols-2 gap-8 items-center\">\n            <div class=\"material-card bg-indigo-50 border-l-4 border-indigo-600\">\n                <h3 class=\"text-2xl font-bold mb-4 text-indigo-900\">The Power of $20<\/h3>\n                <p class=\"mb-4 text-gray-700\">\n                    A visual representation of purchasing power. In 1990, $20 bought a feast. Today, it barely covers a quick lunch. This erosion is the core definition of inflation: the decrease in the purchasing power of a unit of currency.\n                <\/p>\n                <div class=\"flex justify-around items-center py-6\">\n                    <div class=\"text-center\">\n                        <div class=\"text-5xl mb-2\">\ud83c\udf71\ud83c\udf77\ud83c\udf70<\/div>\n                        <span class=\"font-bold text-emerald-600 block\">1990<\/span>\n                        <span class=\"text-sm text-gray-500\">Full Feast<\/span>\n                    <\/div>\n                    <div class=\"text-4xl text-gray-300\">\u279c<\/div>\n                    <div class=\"text-center\">\n                        <div class=\"text-5xl mb-2\">\ud83c\udf54\ud83e\udd64<\/div>\n                        <span class=\"font-bold text-red-500 block\">2023<\/span>\n                        <span class=\"text-sm text-gray-500\">Modest Lunch<\/span>\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- 3. CAUSES: Bar Chart with Wrapped Labels -->\n            <div class=\"material-card\">\n                <h3 class=\"text-2xl font-bold mb-2 text-indigo-900\">Drivers of Inflation<\/h3>\n                <p class=\"text-sm text-gray-600 mb-6\">\n                    The three primary forces that push prices up. Understanding these helps predict the FED&#8217;s next move.\n                    <strong>Demand-Pull<\/strong> (too much money), <strong>Cost-Push<\/strong> (expensive materials), and <strong>Expectations<\/strong> (the self-fulfilling prophecy).\n                <\/p>\n                <div class=\"chart-container\">\n                    <canvas id=\"causesChart\"><\/canvas>\n                <\/div>\n            <\/div>\n        <\/section>\n\n        <!-- 4. HISTORY: Timeline Line Chart -->\n        <section id=\"history\">\n            <div class=\"material-card\">\n                <h3 class=\"text-3xl font-bold mb-4 text-indigo-900 border-b pb-2\">A Century of Volatility<\/h3>\n                <p class=\"text-gray-700 mb-6 text-lg\">\n                    The history of US inflation is not a straight line. From the &#8220;Greenbacks&#8221; of the Civil War to the &#8220;Great Inflation&#8221; of the 1970s and the recent Post-Pandemic shock, the dollar has faced repeated tests. This timeline illustrates the major inflationary waves that have shaped the modern economy.\n                <\/p>\n                \n                <div class=\"chart-container w-full\">\n                    <canvas id=\"historyChart\"><\/canvas>\n                <\/div>\n                \n                <div class=\"grid grid-cols-1 md:grid-cols-3 gap-4 mt-6 text-center\">\n                    <div class=\"p-4 bg-red-50 rounded-lg\">\n                        <span class=\"block text-2xl font-bold text-red-600\">14.8%<\/span>\n                        <span class=\"text-sm font-semibold\">1980 Peak<\/span>\n                        <p class=\"text-xs text-gray-500 mt-1\">The Great Inflation Era<\/p>\n                    <\/div>\n                    <div class=\"p-4 bg-emerald-50 rounded-lg\">\n                        <span class=\"block text-2xl font-bold text-emerald-600\">~2.0%<\/span>\n                        <span class=\"text-sm font-semibold\">The Great Moderation<\/span>\n                        <p class=\"text-xs text-gray-500 mt-1\">1990s &#8211; 2008<\/p>\n                    <\/div>\n                    <div class=\"p-4 bg-amber-50 rounded-lg\">\n                        <span class=\"block text-2xl font-bold text-amber-600\">9.1%<\/span>\n                        <span class=\"text-sm font-semibold\">2022 Peak<\/span>\n                        <p class=\"text-xs text-gray-500 mt-1\">Post-Pandemic Shock<\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n\n        <!-- 5. THE FED: Volcker Era Analysis -->\n        <section id=\"volcker\" class=\"grid grid-cols-1 lg:grid-cols-3 gap-8\">\n            <div class=\"lg:col-span-1 space-y-6\">\n                <div class=\"material-card bg-indigo-900 text-white h-full flex flex-col justify-center\">\n                    <h3 class=\"text-2xl font-bold mb-4 text-cyan-400\">The Volcker Shock<\/h3>\n                    <p class=\"mb-4 leading-relaxed\">\n                        In the late 1970s, inflation spiraled out of control. Paul Volcker, Chairman of the FED, took drastic action.\n                    <\/p>\n                    <p class=\"mb-4 leading-relaxed\">\n                        He raised interest rates to nearly <strong>20%<\/strong>. This painful move caused a recession but restored <strong>Authority<\/strong> and <strong>Trust<\/strong> in the dollar, anchoring inflation expectations for decades.\n                    <\/p>\n                    <div class=\"mt-4 p-4 bg-indigo-800 rounded-lg border border-indigo-600\">\n                        <strong class=\"block text-cyan-300 mb-1\">Key Lesson:<\/strong>\n                        <span class=\"text-sm\">High interest rates are the FED&#8217;s primary weapon to &#8220;cool down&#8221; an overheated economy, even at the cost of short-term growth.<\/span>\n                    <\/div>\n                <\/div>\n            <\/div>\n            \n            <div class=\"lg:col-span-2 material-card\">\n                <h3 class=\"text-2xl font-bold mb-2 text-indigo-900\">Interest Rates vs. Inflation (1970-1985)<\/h3>\n                <p class=\"text-sm text-gray-600 mb-6\">\n                    A visual correlation showing how spiking the Federal Funds Rate (Blue Bars) eventually crushed the runaway CPI Inflation (Red Line).\n                <\/p>\n                <div class=\"chart-container\">\n                    <canvas id=\"volckerChart\"><\/canvas>\n                <\/div>\n            <\/div>\n        <\/section>\n\n        <!-- 6. EROSION: The Ice Cube Metaphor -->\n        <section class=\"material-card\">\n            <div class=\"grid grid-cols-1 md:grid-cols-2 gap-8 items-center\">\n                <div class=\"chart-container\">\n                    <canvas id=\"erosionChart\"><\/canvas>\n                <\/div>\n                <div>\n                    <h3 class=\"text-2xl font-bold mb-4 text-indigo-900\">The Melting Ice Cube<\/h3>\n                    <p class=\"text-lg text-gray-700 mb-4\">\n                        Imagine your savings as a block of ice. Inflation is the ambient heat.\n                    <\/p>\n                    <ul class=\"space-y-4\">\n                        <li class=\"flex items-start\">\n                            <span class=\"text-2xl mr-3\">\ud83d\udd25<\/span>\n                            <div>\n                                <strong class=\"block text-gray-900\">Purchasing Power Loss<\/strong>\n                                <p class=\"text-sm text-gray-600\">A $100 bill from 1950 has the purchasing power of roughly $9 today. The number on the bill hasn&#8217;t changed, but its value has melted.<\/p>\n                            <\/div>\n                        <\/li>\n                        <li class=\"flex items-start\">\n                            <span class=\"text-2xl mr-3\">\ud83d\udcc9<\/span>\n                            <div>\n                                <strong class=\"block text-gray-900\">The Saver&#8217;s Dilemma<\/strong>\n                                <p class=\"text-sm text-gray-600\">If your bank pays 0.5% interest and inflation is 4%, you are effectively losing 3.5% of your wealth every single year.<\/p>\n                            <\/div>\n                        <\/li>\n                    <\/ul>\n                <\/div>\n            <\/div>\n        <\/section>\n\n        <!-- 7. ACTION PLAN: Asset Allocation -->\n        <section id=\"action\">\n            <div class=\"material-card bg-gradient-to-br from-gray-50 to-indigo-50\">\n                <div class=\"text-center max-w-2xl mx-auto mb-8\">\n                    <h3 class=\"text-3xl font-bold mb-2 text-indigo-900\">Your Defense Strategy<\/h3>\n                    <p class=\"text-gray-600\">\n                        History teaches us that cash loses value. To protect your future, you must shift from a passive saver to an active investor. Here is a diversified approach to shielding wealth.\n                    <\/p>\n                <\/div>\n\n                <div class=\"grid grid-cols-1 md:grid-cols-2 gap-8 items-center\">\n                    <!-- Text \/ List -->\n                    <div class=\"space-y-4\">\n                        <div class=\"flex items-center p-3 bg-white rounded shadow-sm border-l-4 border-indigo-500\">\n                            <div class=\"text-2xl mr-4\">\ud83d\udcc8<\/div>\n                            <div>\n                                <h4 class=\"font-bold text-gray-800\">Equities (Stocks)<\/h4>\n                                <p class=\"text-xs text-gray-500\">Companies can raise prices, hedging against inflation.<\/p>\n                            <\/div>\n                        <\/div>\n                        <div class=\"flex items-center p-3 bg-white rounded shadow-sm border-l-4 border-cyan-500\">\n                            <div class=\"text-2xl mr-4\">\ud83c\udfe0<\/div>\n                            <div>\n                                <h4 class=\"font-bold text-gray-800\">Real Estate<\/h4>\n                                <p class=\"text-xs text-gray-500\">Rents and property values tend to rise with the CPI.<\/p>\n                            <\/div>\n                        <\/div>\n                        <div class=\"flex items-center p-3 bg-white rounded shadow-sm border-l-4 border-emerald-500\">\n                            <div class=\"text-2xl mr-4\">\ud83d\udee1\ufe0f<\/div>\n                            <div>\n                                <h4 class=\"font-bold text-gray-800\">TIPS (Treasury Inflation-Protected Securities)<\/h4>\n                                <p class=\"text-xs text-gray-500\">Government bonds specifically designed to adjust with inflation.<\/p>\n                            <\/div>\n                        <\/div>\n                        <div class=\"flex items-center p-3 bg-white rounded shadow-sm border-l-4 border-amber-500\">\n                            <div class=\"text-2xl mr-4\">\ud83c\udf93<\/div>\n                            <div>\n                                <h4 class=\"font-bold text-gray-800\">Human Capital<\/h4>\n                                <p class=\"text-xs text-gray-500\">Increasing your skills allows you to negotiate higher wages.<\/p>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n\n                    <!-- Doughnut Chart -->\n                    <div class=\"chart-container\">\n                        <canvas id=\"allocationChart\"><\/canvas>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n\n        <!-- Footer -->\n        <footer class=\"text-center text-gray-400 py-8 border-t\">\n            <p class=\"mb-2\">Generated by Canvas Infographics<\/p>\n            <p class=\"text-xs\">Data based on historical US CPI and Federal Reserve records.<\/p>\n        <\/footer>\n\n    <\/main>\n\n    <script>\n        \/\/ --- UTILITY: Label Wrapping Function (Mandatory) ---\n        function splitLabel(label, maxLength = 16) {\n            if (label.length <= maxLength) return label;\n            \n            const words = label.split(' ');\n            const lines = [];\n            let currentLine = words[0];\n\n            for (let i = 1; i < words.length; i++) {\n                if (currentLine.length + 1 + words[i].length <= maxLength) {\n                    currentLine += ' ' + words[i];\n                } else {\n                    lines.push(currentLine);\n                    currentLine = words[i];\n                }\n            }\n            lines.push(currentLine);\n            return lines;\n        }\n\n        \/\/ --- UTILITY: Tooltip Configuration (Mandatory) ---\n        const commonTooltipOptions = {\n            callbacks: {\n                title: function(tooltipItems) {\n                    const item = tooltipItems[0];\n                    let label = item.chart.data.labels[item.dataIndex];\n                    if (Array.isArray(label)) {\n                        return label.join(' ');\n                    } else {\n                        return label;\n                    }\n                }\n            }\n        };\n\n        \/\/ --- CHART 1: Causes of Inflation (Bar) ---\n        const ctxCauses = document.getElementById('causesChart').getContext('2d');\n        const rawCausesLabels = [\n            \"Demand-Pull (Too Much Money)\", \n            \"Cost-Push (Supply Chain Costs)\", \n            \"Inflation Expectations (Psychology)\"\n        ];\n        \n        new Chart(ctxCauses, {\n            type: 'bar',\n            data: {\n                labels: rawCausesLabels.map(l => splitLabel(l)), \/\/ Apply wrapping\n                datasets: [{\n                    label: 'Impact Severity Risk (Illustrative)',\n                    data: [85, 65, 95], \/\/ Illustrative values based on \"Danger\" described in text\n                    backgroundColor: ['#4338ca', '#06b6d4', '#ef4444'],\n                    borderRadius: 8\n                }]\n            },\n            options: {\n                responsive: true,\n                maintainAspectRatio: false,\n                plugins: {\n                    legend: { display: false },\n                    tooltip: commonTooltipOptions, \/\/ Apply mandatory tooltip config\n                },\n                scales: {\n                    y: { beginAtZero: true, display: false },\n                    x: { grid: { display: false } }\n                }\n            }\n        });\n\n        \/\/ --- CHART 2: History (Line) ---\n        const ctxHistory = document.getElementById('historyChart').getContext('2d');\n        new Chart(ctxHistory, {\n            type: 'line',\n            data: {\n                labels: ['1960', '1965', '1970', '1975', '1980', '1985', '1990', '2000', '2008', '2015', '2020', '2022', '2023'],\n                datasets: [{\n                    label: 'US CPI Inflation Rate (%)',\n                    data: [1.5, 1.6, 5.8, 9.1, 14.8, 3.5, 5.4, 3.4, 0.1, 0.7, 1.4, 9.1, 3.2],\n                    borderColor: '#ef4444',\n                    backgroundColor: 'rgba(239, 68, 68, 0.1)',\n                    fill: true,\n                    tension: 0.4,\n                    pointRadius: 4,\n                    pointHoverRadius: 6\n                }]\n            },\n            options: {\n                responsive: true,\n                maintainAspectRatio: false,\n                plugins: {\n                    tooltip: commonTooltipOptions\n                },\n                scales: {\n                    y: { \n                        beginAtZero: true,\n                        title: { display: true, text: 'Inflation Rate %' }\n                    }\n                }\n            }\n        });\n\n        \/\/ --- CHART 3: Volcker Era (Bar\/Line Combo) ---\n        const ctxVolcker = document.getElementById('volckerChart').getContext('2d');\n        new Chart(ctxVolcker, {\n            type: 'bar',\n            data: {\n                labels: ['1976', '1977', '1978', '1979', '1980', '1981', '1982', '1983', '1984'],\n                datasets: [\n                    {\n                        type: 'line',\n                        label: 'Inflation (CPI)',\n                        data: [5.8, 6.5, 7.6, 11.3, 13.5, 10.3, 6.1, 3.2, 4.3],\n                        borderColor: '#ef4444',\n                        borderWidth: 3,\n                        tension: 0.4\n                    },\n                    {\n                        type: 'bar',\n                        label: 'Fed Funds Rate',\n                        data: [5.0, 5.5, 7.9, 11.2, 18.9, 16.4, 12.3, 9.1, 10.2],\n                        backgroundColor: '#4338ca',\n                        borderRadius: 4\n                    }\n                ]\n            },\n            options: {\n                responsive: true,\n                maintainAspectRatio: false,\n                plugins: {\n                    tooltip: commonTooltipOptions\n                },\n                scales: {\n                    y: { beginAtZero: true, title: { display: true, text: 'Rate %' } }\n                }\n            }\n        });\n\n        \/\/ --- CHART 4: Erosion (Area) ---\n        const ctxErosion = document.getElementById('erosionChart').getContext('2d');\n        new Chart(ctxErosion, {\n            type: 'line',\n            data: {\n                labels: ['1950', '1960', '1970', '1980', '1990', '2000', '2010', '2023'],\n                datasets: [{\n                    label: 'Purchasing Power of $100',\n                    data: [100, 82, 61, 28, 17, 12, 9, 8],\n                    borderColor: '#06b6d4',\n                    backgroundColor: 'rgba(6, 182, 212, 0.4)',\n                    fill: 'start',\n                    tension: 0.3\n                }]\n            },\n            options: {\n                responsive: true,\n                maintainAspectRatio: false,\n                plugins: {\n                    tooltip: commonTooltipOptions,\n                    legend: { display: true, position: 'bottom' }\n                },\n                scales: {\n                    y: { \n                        beginAtZero: true,\n                        title: { display: true, text: 'Real Value ($)' }\n                    }\n                }\n            }\n        });\n\n        \/\/ --- CHART 5: Allocation (Doughnut) ---\n        const ctxAllocation = document.getElementById('allocationChart').getContext('2d');\n        const allocationLabels = [\n            \"Equities (Growth Stocks)\", \n            \"Real Estate (Hard Assets)\", \n            \"TIPS (Protected Bonds)\", \n            \"Cash (Emergency Only)\"\n        ];\n\n        new Chart(ctxAllocation, {\n            type: 'doughnut',\n            data: {\n                labels: allocationLabels.map(l => splitLabel(l)),\n                datasets: [{\n                    data: [40, 30, 20, 10],\n                    backgroundColor: [\n                        '#4338ca', \/\/ Indigo\n                        '#06b6d4', \/\/ Cyan\n                        '#10b981', \/\/ Emerald\n                        '#94a3b8'  \/\/ Gray\n                    ],\n                    borderWidth: 0,\n                    hoverOffset: 10\n                }]\n            },\n            options: {\n                responsive: true,\n                maintainAspectRatio: false,\n                cutout: '60%',\n                plugins: {\n                    legend: { position: 'right' },\n                    tooltip: commonTooltipOptions\n                }\n            }\n        });\n    <\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Mastering the Silent Tax: US Inflation Infographic Canvas Infographics Concept History The FED Action Plan Mastering the Silent Tax Why does the $20 bill in &#8230; <a title=\"infografia-History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money\" class=\"read-more\" href=\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/\" aria-label=\"Read more about infografia-History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money\">Leer Mas<\/a><\/p>\n","protected":false},"author":1,"featured_media":6054,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[76],"tags":[83],"class_list":["post-6551","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-infographics","tag-dollar","resize-featured-image"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.5 (Yoast SEO v26.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>History of inflation and its financial impact - Today Dollar<\/title>\n<meta name=\"description\" content=\"Discover the story behind inflation and how it affects the purchasing power of your money over time.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"infografia-History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money\" \/>\n<meta property=\"og:description\" content=\"Discover the story behind inflation and how it affects the purchasing power of your money over time.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/\" \/>\n<meta property=\"og:site_name\" content=\"Today Dollar\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codigodelmercado\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-27T00:31:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-27T01:01:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"731\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Erick Galvez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Erick Galvez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/\"},\"author\":{\"name\":\"Erick Galvez\",\"@id\":\"https:\/\/todaydollar.com\/en\/#\/schema\/person\/e6e5674024e27641999d983dc5d3bdb8\"},\"headline\":\"infografia-History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money\",\"datePublished\":\"2025-11-27T00:31:59+00:00\",\"dateModified\":\"2025-11-27T01:01:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/\"},\"wordCount\":482,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/todaydollar.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp\",\"keywords\":[\"Dollar\"],\"articleSection\":[\"infographics\"],\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#respond\"]}],\"copyrightYear\":\"2025\",\"copyrightHolder\":{\"@id\":\"https:\/\/todaydollar.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/\",\"url\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/\",\"name\":\"History of inflation and its financial impact - Today Dollar\",\"isPartOf\":{\"@id\":\"https:\/\/todaydollar.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp\",\"datePublished\":\"2025-11-27T00:31:59+00:00\",\"dateModified\":\"2025-11-27T01:01:00+00:00\",\"description\":\"Discover the story behind inflation and how it affects the purchasing power of your money over time.\",\"breadcrumb\":{\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#primaryimage\",\"url\":\"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp\",\"contentUrl\":\"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp\",\"width\":1280,\"height\":731,\"caption\":\"History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\/\/todaydollar.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"infografia-History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/todaydollar.com\/en\/#website\",\"url\":\"https:\/\/todaydollar.com\/en\/\",\"name\":\"Today Dollar\",\"description\":\"TodayDollar.com es tu portal de econom\u00eda, finanzas e inversiones. Explicamos el impacto del d\u00f3lar y los mercados globales en tu vida diaria con claridad y sencillez.\",\"publisher\":{\"@id\":\"https:\/\/todaydollar.com\/en\/#organization\"},\"alternateName\":\"El D\u00f3lar Hoy\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/todaydollar.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/todaydollar.com\/en\/#organization\",\"name\":\"Today Dollar\",\"alternateName\":\"El d\u00f3lar hoy\",\"url\":\"https:\/\/todaydollar.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/todaydollar.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/09\/Logo-grande.png\",\"contentUrl\":\"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/09\/Logo-grande.png\",\"width\":1024,\"height\":1024,\"caption\":\"Today Dollar\"},\"image\":{\"@id\":\"https:\/\/todaydollar.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codigodelmercado\",\"https:\/\/www.youtube.com\/@codigodelmercado\",\"https:\/\/www.tiktok.com\/@codigodelmercado\"],\"description\":\"TodayDollar.com es un portal digital especializado en econom\u00eda, finanzas e inversiones. Explicamos de manera clara y sencilla el papel del d\u00f3lar en la econom\u00eda mundial, su impacto en los mercados globales y en la vida diaria de las personas. Publicamos art\u00edculos, gu\u00edas pr\u00e1cticas y an\u00e1lisis sobre finanzas personales, trading, ahorro e inversiones, con un enfoque accesible para lectores de Am\u00e9rica Latina, Europa y el mundo.\",\"legalName\":\"Today Dollar\",\"foundingDate\":\"2025-09-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/todaydollar.com\/en\/#\/schema\/person\/e6e5674024e27641999d983dc5d3bdb8\",\"name\":\"Erick Galvez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/todaydollar.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/54247e489861476ce67e335cb541c16b78c6ed9a17ce481ccd417b4b9e7728db?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/54247e489861476ce67e335cb541c16b78c6ed9a17ce481ccd417b4b9e7728db?s=96&d=mm&r=g\",\"caption\":\"Erick Galvez\"},\"sameAs\":[\"https:\/\/todaydollar.com\"],\"url\":\"https:\/\/todaydollar.com\/en\/author\/gonerick\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"History of inflation and its financial impact - Today Dollar","description":"Discover the story behind inflation and how it affects the purchasing power of your money over time.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/","og_locale":"en_US","og_type":"article","og_title":"infografia-History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money","og_description":"Discover the story behind inflation and how it affects the purchasing power of your money over time.","og_url":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/","og_site_name":"Today Dollar","article_publisher":"https:\/\/www.facebook.com\/codigodelmercado","article_published_time":"2025-11-27T00:31:59+00:00","article_modified_time":"2025-11-27T01:01:00+00:00","og_image":[{"width":1280,"height":731,"url":"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp","type":"image\/webp"}],"author":"Erick Galvez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Erick Galvez","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#article","isPartOf":{"@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/"},"author":{"name":"Erick Galvez","@id":"https:\/\/todaydollar.com\/en\/#\/schema\/person\/e6e5674024e27641999d983dc5d3bdb8"},"headline":"infografia-History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money","datePublished":"2025-11-27T00:31:59+00:00","dateModified":"2025-11-27T01:01:00+00:00","mainEntityOfPage":{"@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/"},"wordCount":482,"commentCount":0,"publisher":{"@id":"https:\/\/todaydollar.com\/en\/#organization"},"image":{"@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#primaryimage"},"thumbnailUrl":"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp","keywords":["Dollar"],"articleSection":["infographics"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#respond"]}],"copyrightYear":"2025","copyrightHolder":{"@id":"https:\/\/todaydollar.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/","url":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/","name":"History of inflation and its financial impact - Today Dollar","isPartOf":{"@id":"https:\/\/todaydollar.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#primaryimage"},"image":{"@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#primaryimage"},"thumbnailUrl":"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp","datePublished":"2025-11-27T00:31:59+00:00","dateModified":"2025-11-27T01:01:00+00:00","description":"Discover the story behind inflation and how it affects the purchasing power of your money over time.","breadcrumb":{"@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#primaryimage","url":"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp","contentUrl":"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/11\/\u00bfPor-que-el-90-de-los-traders-pierde-dinero-por-falta-de-control-emocional.webp","width":1280,"height":731,"caption":"History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money"},{"@type":"BreadcrumbList","@id":"https:\/\/todaydollar.com\/en\/infografia-history-of-inflation-in-the-u-s-and-its-impact-on-the-dollar-the-ongoing-battle-for-the-value-of-your-money\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/todaydollar.com\/en\/"},{"@type":"ListItem","position":2,"name":"infografia-History of Inflation in the U.S. and its Impact on the Dollar: The Ongoing Battle for the Value of Your Money"}]},{"@type":"WebSite","@id":"https:\/\/todaydollar.com\/en\/#website","url":"https:\/\/todaydollar.com\/en\/","name":"Today Dollar","description":"TodayDollar.com es tu portal de econom\u00eda, finanzas e inversiones. Explicamos el impacto del d\u00f3lar y los mercados globales en tu vida diaria con claridad y sencillez.","publisher":{"@id":"https:\/\/todaydollar.com\/en\/#organization"},"alternateName":"El D\u00f3lar Hoy","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/todaydollar.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/todaydollar.com\/en\/#organization","name":"Today Dollar","alternateName":"El d\u00f3lar hoy","url":"https:\/\/todaydollar.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/todaydollar.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/09\/Logo-grande.png","contentUrl":"https:\/\/todaydollar.com\/wp-content\/uploads\/2025\/09\/Logo-grande.png","width":1024,"height":1024,"caption":"Today Dollar"},"image":{"@id":"https:\/\/todaydollar.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codigodelmercado","https:\/\/www.youtube.com\/@codigodelmercado","https:\/\/www.tiktok.com\/@codigodelmercado"],"description":"TodayDollar.com es un portal digital especializado en econom\u00eda, finanzas e inversiones. Explicamos de manera clara y sencilla el papel del d\u00f3lar en la econom\u00eda mundial, su impacto en los mercados globales y en la vida diaria de las personas. Publicamos art\u00edculos, gu\u00edas pr\u00e1cticas y an\u00e1lisis sobre finanzas personales, trading, ahorro e inversiones, con un enfoque accesible para lectores de Am\u00e9rica Latina, Europa y el mundo.","legalName":"Today Dollar","foundingDate":"2025-09-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"}},{"@type":"Person","@id":"https:\/\/todaydollar.com\/en\/#\/schema\/person\/e6e5674024e27641999d983dc5d3bdb8","name":"Erick Galvez","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/todaydollar.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/54247e489861476ce67e335cb541c16b78c6ed9a17ce481ccd417b4b9e7728db?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/54247e489861476ce67e335cb541c16b78c6ed9a17ce481ccd417b4b9e7728db?s=96&d=mm&r=g","caption":"Erick Galvez"},"sameAs":["https:\/\/todaydollar.com"],"url":"https:\/\/todaydollar.com\/en\/author\/gonerick\/"}]}},"_links":{"self":[{"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/posts\/6551","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/comments?post=6551"}],"version-history":[{"count":1,"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/posts\/6551\/revisions"}],"predecessor-version":[{"id":6555,"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/posts\/6551\/revisions\/6555"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/media\/6054"}],"wp:attachment":[{"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/media?parent=6551"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/categories?post=6551"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/todaydollar.com\/en\/wp-json\/wp\/v2\/tags?post=6551"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}