U.S. Retirement Assets Data: 1995-2024
April 1, 2026 (IF13194)

Retirement Asset Data from 1995 to 2024

The Federal Reserve's Financial Accounts of the United States reported that the total amount of financial assets in U.S. retirement plans (which does not include Social Security) was $45.1 trillion at the end of 2024, which was an increase in inflation adjusted terms of 178% since 1995.

Figure 1 shows the total amount of financial assets (in trillions of dollars) (1) in pension plans sponsored by private sector employers, state and local governments, and the federal government, and (2) held in Individual Retirement Accounts (IRAs), from 1995 through 2024. The years in which the amount of total retirement assets declined were typically years in which financial markets declined. For example, the amount of retirement assets at the end of 2022 was 16.3% lower in real terms than at the end of 2021, and the Standard & Poor's 500 (S&P 500) index ended the year 19.4% lower than at the start of 2022.

Figure 1

. Total Holdings of Financial Assets in U.S. Pension Plans and Individual Retirement Accounts (IRAs) from 1995 through 2024

In trillions of 2024 dollars. Figure is interactive in the HTML report version.

<script type="text/javascript">//Based on IAG in AP 7.4.1 (Revised 20240624) $(function () { $('#IAG-3234184053').bind('mousedown', function () { /* saveRptHighChartClick(); */ }); //#### HIGHCHART LIBRARIES ####// var files = ["https://code.highcharts.com/highcharts.js","https://code.highcharts.com/highcharts-more.js","https://code.highcharts.com/modules/exporting.js","https://code.highcharts.com/modules/export-data.js","https://code.highcharts.com/modules/accessibility.js","https://code.highcharts.com/modules/annotations.js"], loaded = 0; if (typeof window["HighchartsEditor"] === "undefined") { window.HighchartsEditor = { ondone: [cl], hasWrapped: false, hasLoaded: false }; include(files[0]); } else { if (window.HighchartsEditor.hasLoaded) { cl(); } else { window.HighchartsEditor.ondone.push(cl); } } function isScriptAlreadyIncluded(src) { var scripts = document.getElementsByTagName("script"); for (var i = 0; i < scripts.length; i++) { if (scripts[i].hasAttribute("src")) { if ((scripts[i].getAttribute("src") || "").indexOf(src) >= 0 || (scripts[i].getAttribute("src") === "http://code.highcharts.com/highcharts.js" && src === "https://code.highcharts.com/stock/highstock.js")) { return true; } } } return false; } function check() { if (loaded === files.length) { for (var i = 0; i < window.HighchartsEditor.ondone.length; i++) { try { window.HighchartsEditor.ondone[i](); } catch (e) { console.error(e); } } window.HighchartsEditor.hasLoaded = true; } } function include(script) { function next() { ++loaded; if (loaded < files.length) { include(files[loaded]); } check(); } if (isScriptAlreadyIncluded(script)) { return next(); } var sc = document.createElement("script"); sc.src = script; sc.type = "text/javascript"; sc.onload = function () { next(); }; document.head.appendChild(sc); } function each(a, fn) { if (typeof a.forEach !== "undefined") { a.forEach(fn); } else { for (var i = 0; i < a.length; i++) { if (fn) { fn(a[i]); } } } } var inc = {}, incl = []; each(document.querySelectorAll("script"), function (t) { inc[t.src.substr(0, t.src.indexOf("?"))] = 1; }); function cl() { if (typeof window["Highcharts"] !== "undefined") { //#### HIGHCHART LIBRARIES END ####// //##### CRS THEME START (v1.2, 20220510)#####// Highcharts.theme = { colors: ['#0C90FC', '#003865', '#F1B434', '#7060A8', '#6CC8BD', '#757048', '#B4C7D0', '#D36127'], chart: {backgroundColor: 'white',}, title: { style: { color: 'black', font: '15px "Calibri", Verdana, sans-serif', fontWeight: 'bold' } }, subtitle: { style: { color: 'black', font: '14px "Calibri", Verdana, sans-serif' }}, credits: { enabled: false }, legend: { itemStyle: { fontFamily: '"Calibri", Verdana, sans-serif', fontSize: '14px', color: 'black', "text-decoration": 'none !important' }, verticalAlign: 'top', itemMarginBottom: 7, }, yAxis: { title: { style: { font: '14px "Calibri", Verdana, sans-serif', fontWeight: 'bold', color: 'black'} }, labels: { style: { font: '14px "Calibri", Verdana,sans-serif', color: 'black'}}, }, xAxis: { title: { style: { font: '14px "Calibri", Verdana, sans-serif', fontWeight: 'bold', color: 'black'}, y: 8 }, labels: { style: { font: '14px "Calibri", Verdana, sans-serif', color: 'black' }, }, lineColor: 'black', lineWidth: 0.5 } }; Highcharts.setOptions(Highcharts.theme); Highcharts.setOptions({ lang: {thousandsSep: ','}, chart: {style: {fontFamily: 'Calibri'}}, exporting: { enabled: false } }); //##### CRS THEME END #####// //#### START chart elements before Highcharts container ####// //#### END chart elements before the Highcharts container ####// var options = { //#### START code inside Highcharts.chart('container', { ####// chart: { zoomType: 'xy' }, title: { text: '' }, accessibility: { description: 'Total Holdings of Financial Assets in U.S. Pension Plans and Individual Retirement Accounts (IRAs) from 1995 to 2024.' }, xAxis: [{ categories: ['1995', '1996', '1997', '1998', '1999','2000','2001','2002','2003','2004','2005','2006','2007','2008','2009','2010','2011','2012','2013','2014','2015', '2016','2017','2018','2019','2020','2021','2022','2023','2024'], labels: {rotation: -89.9}, }], yAxis: [{ // Primary yAxis max: 50, // Set maximum value to 50 labels: { format: '${value:.1f}', style: { color: 'black' } }, title: { text: 'Trillions of December 2024 Dollars', rotation: -89.9, style: { color: 'black' } } }, ], tooltip: { shared: true, outside: true, headerFormat: '{point.key}
', pointFormat: ' ' + '{series.name}: ${point.y:.1f}T
', backgroundColor: 'rgba(255, 255, 255, 1)', borderWidth: 0, shape: 'callout', headerShape: 'callout', inverted: true, zIndex: 100, positioner: function (labelWidth, labelHeight, point) { let x = point.plotX + this.chart.plotLeft - labelWidth / 2; const chartWidth = this.chart.chartWidth; // Check if tooltip goes out of bounds and flip sides if necessary if (x < 0) { x = 0; // Keep tooltip within left boundary } else if (x + labelWidth > chartWidth) { x = chartWidth - labelWidth; // Keep tooltip within right boundary } return { x: x, y: point.plotY + this.chart.plotTop - labelHeight - -150 // Adjust for spacing }; } }, plotOptions: { column: { stacking: 'normal', borderRadius: 0, borderWidth: 0, dataLabels: { enabled: false } } }, legend: { // layout: 'vertical', align: 'center', // x: 120, verticalAlign: 'top', floating: false, backgroundColor:'white', borderRadius: 1 }, series: [{ name: 'Total Retirement Assets', type: 'column', zIndex: -1, color: "#000000", color: "rgba(0, 0, 0, 0)", // Transparent color data: [16.18, 17.27, 18.76, 20.70, 22.46, 22.26, 22.23, 21.73, 23.64, 24.98, 25.63, 27.52, 28.38, 25.78, 27.81, 30.17, 30.00, 31.49, 35.47, 36.83, 37.25, 38.29, 41.12, 39.92, 43.48, 46.74, 47.53, 39.78, 42.67, 45.07,], showInLegend: false, opacity: 0 // Makes the series invisible on the chart },{ name: 'Federal Government DC', type: 'column', zIndex: 2, color: "#009483", data: [.07, .09, .11, .14, .17, .17, .17, .17, .21, .24, .27, .31, .34, .29, .35, .39, .4, .45, .54, .59, .61, .65, .71, .7, .79, .89, .94, .77, .87, .96,], },{ name: 'State and Local Government DC', type: 'column', zIndex: 2, color: "#c3bf9d", data: [.09, 0.3, .39, .48, .59, .53, .48, .41, 0.5, .55, .58, .69, .72, .52, .62, .68, .64, .66, 0.7, .64, .59, .56, 0.6, .52, .56, .57, .55, .45, .47, .49,], },{ name: 'Private Sector DB', type: 'column', zIndex: 2, color: "#7060a8", data: [2.8, 2.9, 2.9, 3.1, 3.2, 3.2, 3.4, 3.5, 3.5, 3.6, 3.6, 3.7, 3.7, 3.9, 3.8, 4.1, 4.1, 4.1, 4.6, 4.6, 4.5, 4.5, 4.5, 4.4, 4.5, 4.4, 4.2, 3.4, 3.3, 3.2,], },{ name: 'Federal Government DB', type: 'column', zIndex: 2, color: "#cc8f2b", data: [3.3, 3.3, 3.4, 3.5, 3.5, 3.5, 3.6, 3.6, 3.7, 3.7, 3.7, 3.8, 3.8, 3.9, 3.9, 4.1, 4.1, 4.2, 4.2, 4.3, 4.3, 4.3, 4.3, 4.3, 4.4, 4.4, 4.2, 4., 4., 3.9,], },{ name: 'Private Sector DC', type: 'column', zIndex: 2, color: "#c8202f", data: [2.9, 3.3, 3.8, 4.3, 4.8, 4.5, 4., 3.6, 4.4, 4.7, 5., 5.4, 5.5, 4.1, 4.9, 5.4, 5.3, 5.8, 6.8, 7.1, 7, 7.4, 8.4, 7.8, 9.1, 10.2, 10.7, 8.5, 9.6, 10.6,], },{ name: 'State and Local Government DB', type: 'column', zIndex: 2, color: "#418fde", data: [4.4, 4.6, 4.8, 5, 5.3, 5.5, 5.8, 6.1, 6.3, 6.7, 6.9, 7.1, 7.2, 7.6, 7.7, 8.2, 8.2, 8.3, 9.4, 9.8, 10.2, 10.4, 10.6, 10.7, 10.7, 10.9, 10.5, 9, 9, 9,], },{ name: 'IRAs', type: 'column', zIndex: 2, color: "#173a64", data: [2.7, 2.9, 3.4, 4.2, 5, 4.8, 4.7, 4.4, 5.1, 5.5, 5.5, 6.6, 7.1, 5.5, 6.6, 7.2, 7.2, 7.9, 9.2, 9.8, 10, 10.5, 12.1, 11.5, 13.4, 15.3, 16.5, 13.7, 15.4, 17,], }] //#### END container ####// }; new Highcharts.Chart("IAG-3234184053", options); } } }); </script>

Source: Figure constructed by CRS from Board of Governors of the Federal Reserve System, Financial Accounts of the United States, https://www.federalreserve.gov/apps/fof/FOFTables.aspx. See tables L.118.b, L.118.c, L.119.b, L.119.c, L.120.b, L.120.c, and L.229 of the January 9, 2026, release. Some data points might be revised in subsequent releases.

Notes: IRAs include employer-sponsored IRAs and state-administered IRA programs. Totals might not add due to rounding.

Types of Retirement Plans

Many employers in both the private and public sectors offer one of two types of pension plans: defined benefit (DB) plans (from which participants typically receive monthly payments throughout retirement [though some offer a lump sum payment at retirement]) or defined contribution (DC) plans (from which funds in individual accounts provide a source of income in retirement). The 401(k) plan is the most common type of DC plan. Some employers offer both types.

Individuals can also save for retirement outside of the workplace in traditional and Roth IRAs, which are accounts established by individuals at banks or other financial institutions into which workers can make contributions. IRAs are often connected with employer-sponsored pensions because they allow workers to roll over their DC account balances or DB lump sum payments upon job change or retirement, preserving the tax advantages of funds. For example, in 2024, 79% of traditional IRA accounts that included rollovers had a majority (i.e., 50% or more) of their account balances from rollovers.

Figure 2

. Total Financial Assets of Pension and Retirement Plans from 1995 through 2024

In trillions of 2024 dollars. Figure is interactive in the HTML report version.

<script type="text/javascript">//Based on IAG in AP 7.4.1 (Revised 20240624) $(function () { $('#IAG-1873258984').bind('mousedown', function () { /* saveRptHighChartClick(); */ }); //#### HIGHCHART LIBRARIES ####// var files = ["https://code.highcharts.com/highcharts.js","https://code.highcharts.com/highcharts-more.js","https://code.highcharts.com/modules/exporting.js","https://code.highcharts.com/modules/export-data.js","https://code.highcharts.com/modules/accessibility.js"], loaded = 0; if (typeof window["HighchartsEditor"] === "undefined") { window.HighchartsEditor = { ondone: [cl], hasWrapped: false, hasLoaded: false }; include(files[0]); } else { if (window.HighchartsEditor.hasLoaded) { cl(); } else { window.HighchartsEditor.ondone.push(cl); } } function isScriptAlreadyIncluded(src) { var scripts = document.getElementsByTagName("script"); for (var i = 0; i < scripts.length; i++) { if (scripts[i].hasAttribute("src")) { if ((scripts[i].getAttribute("src") || "").indexOf(src) >= 0 || (scripts[i].getAttribute("src") === "http://code.highcharts.com/highcharts.js" && src === "https://code.highcharts.com/stock/highstock.js")) { return true; } } } return false; } function check() { if (loaded === files.length) { for (var i = 0; i < window.HighchartsEditor.ondone.length; i++) { try { window.HighchartsEditor.ondone[i](); } catch (e) { console.error(e); } } window.HighchartsEditor.hasLoaded = true; } } function include(script) { function next() { ++loaded; if (loaded < files.length) { include(files[loaded]); } check(); } if (isScriptAlreadyIncluded(script)) { return next(); } var sc = document.createElement("script"); sc.src = script; sc.type = "text/javascript"; sc.onload = function () { next(); }; document.head.appendChild(sc); } function each(a, fn) { if (typeof a.forEach !== "undefined") { a.forEach(fn); } else { for (var i = 0; i < a.length; i++) { if (fn) { fn(a[i]); } } } } var inc = {}, incl = []; each(document.querySelectorAll("script"), function (t) { inc[t.src.substr(0, t.src.indexOf("?"))] = 1; }); function cl() { if (typeof window["Highcharts"] !== "undefined") { //#### HIGHCHART LIBRARIES END ####// //##### CRS THEME START (v1.2, 20220510)#####// Highcharts.theme = { colors: ['#0C90FC', '#003865', '#F1B434', '#7060A8', '#6CC8BD', '#757048', '#B4C7D0', '#D36127'], chart: {backgroundColor: 'white',}, title: { style: { color: 'black', font: '15px "Calibri", Verdana, sans-serif', fontWeight: 'bold' } }, subtitle: { style: { color: 'black', font: '14px "Calibri", Verdana, sans-serif' }}, credits: { enabled: false }, legend: { itemStyle: { fontFamily: '"Calibri", Verdana, sans-serif', fontSize: '14px', color: 'black', "text-decoration": 'none !important' }, verticalAlign: 'top', itemMarginBottom: 7, }, yAxis: { title: { style: { font: '14px "Calibri", Verdana, sans-serif', fontWeight: 'bold', color: 'black'} }, labels: { style: { font: '14px "Calibri", Verdana,sans-serif', color: 'black'}}, }, xAxis: { title: { style: { font: '14px "Calibri", Verdana, sans-serif', fontWeight: 'bold', color: 'black'}, y: 8 }, labels: { style: { font: '14px "Calibri", Verdana, sans-serif', color: 'black' }, }, lineColor: 'black', lineWidth: 0.5 } }; Highcharts.setOptions(Highcharts.theme); Highcharts.setOptions({ lang: {thousandsSep: ','}, chart: {style: {fontFamily: 'Calibri'}}, exporting: { enabled: false } }); //##### CRS THEME END #####// //#### START chart elements before Highcharts container ####// //#### END chart elements before the Highcharts container ####// var options = { //#### START code inside Highcharts.chart('container', { ####// chart: { zoomType: 'xy' }, title: { text: '' }, subtitle: { text: '' }, xAxis: [{ categories: ['1995', '1996', '1997', '1998', '1999','2000','2001','2002','2003','2004','2005','2006','2007','2008','2009','2010','2011','2012','2013','2014','2015', '2016','2017','2018','2019','2020','2021','2022','2023','2024'], labels: {rotation: -89.9}, }], yAxis: [{ // Primary yAxis labels: { format: '${value:.1f}', style: { color: 'black' } }, title: { text: 'Trillions of December 2024 Dollars', rotation: -89.9, style: { color: 'black' } } }, ], tooltip: { shared: true, outside: true, headerFormat: '{point.key}
', // Set header format to display the year pointFormat: ' ' + '{series.name}: ${point.y:.1f}T
', backgroundColor: 'rgba(255, 255, 255, 1)', borderWidth: 0, shape: 'callout', headerShape: 'callout', inverted: true, zIndex: 100 }, // formatter: function () { // return '' + Highcharts.dateFormat('%Y', this.x) + '
' + // ' ' + // '' + this.series.name + ': $' + this.y.toFixed(1) + 'T'; // }, legend: { // layout: 'vertical', align: 'center', // x: 120, verticalAlign: 'top', floating: false, backgroundColor:'white', borderRadius: 1 }, series: [ { name: 'IRAs', type: 'line', zIndex: 2, color: "#173a64", lineWidth: 2, data: [2.7, 2.9, 3.4, 4.2, 5, 4.8, 4.7, 4.4, 5.1, 5.5, 5.5, 6.6, 7.1, 5.5, 6.6, 7.2, 7.2, 7.9, 9.2, 9.8, 10, 10.5, 12.1, 11.5, 13.4, 15.3, 16.5, 13.7, 15.4, 17,], },{ name: 'State and Local Government DB', type: 'line', zIndex: 2, color: "#418fde", lineWidth: 2, data: [4.4, 4.6, 4.8, 5, 5.3, 5.5, 5.8, 6.1, 6.3, 6.7, 6.9, 7.1, 7.2, 7.6, 7.7, 8.2, 8.2, 8.3, 9.4, 9.8, 10.2, 10.4, 10.6, 10.7, 10.7, 10.9, 10.5, 9, 9, 9,], },{ name: 'Private Sector DC', type: 'line', dashStyle: 'ShortDash', zIndex: 2, color: "#c8202f", lineWidth: 2, data: [2.9, 3.3, 3.8, 4.3, 4.8, 4.5, 4., 3.6, 4.4, 4.7, 5., 5.4, 5.5, 4.1, 4.9, 5.4, 5.3, 5.8, 6.8, 7.1, 7, 7.4, 8.4, 7.8, 9.1, 10.2, 10.7, 8.5, 9.6, 10.6,], },{ name: 'Federal Government DB', type: 'line', dashStyle: 'ShortDash', zIndex: 2, color: "#cc8f2b", lineWidth: 2, data: [3.3, 3.3, 3.4, 3.5, 3.5, 3.5, 3.6, 3.6, 3.7, 3.7, 3.7, 3.8, 3.8, 3.9, 3.9, 4.1, 4.1, 4.2, 4.2, 4.3, 4.3, 4.3, 4.3, 4.3, 4.4, 4.4, 4.2, 4., 4., 3.9,], },{ name: 'Private Sector DB', type: 'line', zIndex: 2, color: "#7060a8", lineWidth: 2, data: [2.8, 2.9, 2.9, 3.1, 3.2, 3.2, 3.4, 3.5, 3.5, 3.6, 3.6, 3.7, 3.7, 3.9, 3.8, 4.1, 4.1, 4.1, 4.6, 4.6, 4.5, 4.5, 4.5, 4.4, 4.5, 4.4, 4.2, 3.4, 3.3, 3.2,], },{ name: 'State and Local Government DC', type: 'line', zIndex: 2, color: "#c3bf9d", lineWidth: 2, data: [.09, 0.3, .39, .48, .59, .53, .48, .41, 0.5, .55, .58, .69, .72, .52, .62, .68, .64, .66, 0.7, .64, .59, .56, 0.6, .52, .56, .57, .55, .45, .47, .49,], },{ name: 'Federal Government DC', type: 'line', zIndex: 2, color: "#009483", lineWidth: 2, data: [.07, .09, .11, .14, .17, .17, .17, .17, .21, .24, .27, .31, .34, .29, .35, .39, .4, .45, .54, .59, .61, .65, .71, .7, .79, .89, .94, .77, .87, .96,], }] //#### END container ####// }; new Highcharts.Chart("IAG-1873258984", options); } } }); </script>

Source: Figure constructed by CRS from Board of Governors of the Federal Reserve System, Financial Accounts of the United States, https://www.federalreserve.gov/apps/fof/FOFTables.aspx. See tables L.118.b, L.118.c, L.119.b, L.119.c, L.120.b, L.120.c, and L.229 of the January 9, 2026, release. Some data points might be revised in subsequent releases.

Notes: IRAs include employer-sponsored IRAs and state-administered IRA programs. Totals might not add due to rounding.

Figure 2 shows the amounts of each component of retirement assets from 1995 to 2024, adjusted for inflation.

In recent years, the assets in IRAs and DC plans sponsored by private sector employers and the federal government grew while the amount of assets in private sector and federal government DB plans declined. From 2010 to 2024, the amount of assets in private sector DC plans increased by 94.4% and in federal government DC plans increased by 145.3%, while the amount in private sector DB plans decreased by 22.3% and in federal government DB plans decreased by 5.5%. Among the reasons for the changes in private sector plan assets include a shift in the types of pension plans that employers have offered: since the mid-1980s, more private sector workers have been participating in DC plans than have been participating in DB plans.

The amount of assets in DB plans was lower in 2024 than in 2020: private sector DB assets decreased by 27.9%, state and local government DB assets decreased by 17.8%, and federal government DB assets decreased by 11.4%. A variety of factors may have contributed to this, such as investment losses—particularly the 2021 market decline—and higher interest rates. Higher interest rates decrease the present-day value of a DB plan's benefit obligations, meaning that plans need to set aside less money today to fund those benefits. Higher interest rates also decrease the value of bonds, which also contributes to lower asset values. For example, the DB pension plan for federal employees is required by law to invest exclusively in Treasury bonds.

Assets in state and local government DB plans have been higher than in state and local government DC plans because public sector workers are more likely to have access to and participate in DB plans than DC plans. Bureau of Labor Statistics (BLS) in 2025 showed that 75% of state and local workers participated in a DB plan while 25% participated in DC plans.

The federal government sponsors both DB and DC plans for its employees. The Thrift Savings Plan (TSP) is the most common DC plan for federal employees. Many federal employees participate in both types of plans.