Accessing Data with API’s#
OBJECTIVES
More with
groupbyand.aggData Access via API
import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
Data Input via APIs#
This is about using an api “Application program interface” …basic idea, allows direct access to some database or parts of it without having do download everything
import os
import pandas as pd
import matplotlib.pyplot as plt
import datetime
Accessing Data Without a Library#

To start, we will use the federal reserve of St. Louis API as a running example. Head over here to view the documentation.
Exploring the data releases#
As a first example, we will make a request of the api and try to structure the response as a DataFrame.

import requests
api_key = 'aec8814bc2a87a3f6caaf615d0529cf0'
#url from api docs
url = f'https://api.stlouisfed.org/fred/releases?api_key={api_key}&file_type=json'
#make a request
response = requests.get(url)
#examine response code
response
<Response [200]>
#text of the response
response.text[:1000]
'{"realtime_start":"2025-09-29","realtime_end":"2025-09-29","order_by":"release_id","sort_order":"asc","count":319,"offset":0,"limit":1000,"releases":[{"id":9,"realtime_start":"2025-09-29","realtime_end":"2025-09-29","name":"Advance Monthly Sales for Retail and Food Services","press_release":true,"link":"http:\\/\\/www.census.gov\\/retail\\/","notes":"The U.S. Census Bureau conducts the Advance Monthly Retail Trade and Food Services Survey to provide an early estimate of monthly sales by kind of business for retail and food service firms located in the United States. Each month, questionnaires are mailed to a probability sample of approximately 4,700 employer firms selected from the larger Monthly Retail Trade Survey. Advance sales estimates are computed using a link relative estimator. For each detailed industry, we compute a ratio of current-to previous month weighted sales using data from units for which we have obtained usable responses for both the current and previous month. For each '
#turn into json
data = response.json()
data
{'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'order_by': 'release_id',
'sort_order': 'asc',
'count': 319,
'offset': 0,
'limit': 1000,
'releases': [{'id': 9,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Advance Monthly Sales for Retail and Food Services',
'press_release': True,
'link': 'http://www.census.gov/retail/',
'notes': 'The U.S. Census Bureau conducts the Advance Monthly Retail Trade and Food Services Survey to provide an early estimate of monthly sales by kind of business for retail and food service firms located in the United States. Each month, questionnaires are mailed to a probability sample of approximately 4,700 employer firms selected from the larger Monthly Retail Trade Survey. Advance sales estimates are computed using a link relative estimator. For each detailed industry, we compute a ratio of current-to previous month weighted sales using data from units for which we have obtained usable responses for both the current and previous month. For each detailed industry, the advance total sales estimates for the current month is computed by multiplying this ratio by the preliminary sales estimate for the previous month (derived from the larger MRTS) at the appropriate industry level. Total estimates for broader industries are computed as the sum of the detailed industry estimates. The link relative estimate is used because imputation is not performed for most nonrespondents in MARTS. For a limited number of nonresponding companies that have influential effects on the estimates, sales may be estimated based on historical performance of that company. The monthly estimates are benchmarked to the annual survey estimates from the Annual Retail Trade Survey once available. The estimates are adjusted for seasonal variation and holiday and trading day differences. Additional information on MARTS and MRTS can be found on the Census Bureau website at: www.census.gov/retail.\r\nDescription of the survey as provided by the Census, https://census.gov/retail/marts/www/marts_current.pdf'},
{'id': 10,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Consumer Price Index',
'press_release': True,
'link': 'http://www.bls.gov/cpi/'},
{'id': 11,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Employment Cost Index',
'press_release': True,
'link': 'http://www.bls.gov/ncs/ect'},
{'id': 13,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'G.17 Industrial Production and Capacity Utilization',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/g17/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/g17/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 14,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'G.19 Consumer Credit',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/g19/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/g19/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 15,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'G.5 Foreign Exchange Rates',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/g5/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/g5/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 17,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'H.10 Foreign Exchange Rates',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/h10/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/h10/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 18,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'H.15 Selected Interest Rates',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/h15/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/h15/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 19,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'H.3 Aggregate Reserves of Depository Institutions and the Monetary Base',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/h3/',
'notes': 'The Board of Governors discontinued the H.3 statistical release on September 17, 2020. For more information, please see the announcement posted on August 20, 2020 (https://www.federalreserve.gov/feeds/h3.html).'},
{'id': 20,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'H.4.1 Factors Affecting Reserve Balances',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/h41/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/h41/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 21,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'H.6 Money Stock Measures',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/h6/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/h6/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 22,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'H.8 Assets and Liabilities of Commercial Banks in the United States',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/h8/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/h8/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 25,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Manufacturing and Trade Inventories and Sales',
'press_release': True,
'link': 'http://www.census.gov/mtis/www/mtis.html',
'notes': 'The Manufacturing and Trade Inventories and Sales estimates are based on data from three surveys: the Monthly Retail Trade Survey, the Monthly Wholesale Trade Survey, and the Manufacturers’ Shipments, Inventories, and Orders Survey. Data for the wholesale and manufacturing sectors are unrevised from the most recent Monthly Wholesale Trade Report and the Full Report on Manufacturers’ Shipments, Inventories and orders. Data from the Retail sector is revised and presented in more detail from the most recent Advance Economic Indicators Report. For more information on these surveys see the links at: www.census.gov/retail/, www.census.gov/wholesale/, and www.census.gov/manufacturing/m3/.\r\nDescription of the survey as provided by the Census, https://census.gov/mtis/www/data/pdf/mtis_current.pdf.'},
{'id': 27,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'New Residential Construction',
'press_release': True,
'link': 'http://www.census.gov/construction/nrc/'},
{'id': 46,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Producer Price Index',
'press_release': True,
'link': 'http://www.bls.gov/ppi/'},
{'id': 47,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Productivity and Costs',
'press_release': True,
'link': 'http://www.bls.gov/lpc/'},
{'id': 49,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. International Transactions',
'press_release': True,
'link': 'https://www.bea.gov/data/intl-trade-investment/international-transactions'},
{'id': 50,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Employment Situation',
'press_release': True,
'link': 'http://www.bls.gov/ces/'},
{'id': 51,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. International Trade in Goods and Services',
'press_release': True,
'link': 'https://www.census.gov/foreign-trade/Press-Release/current_press_release/index.html'},
{'id': 52,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Z.1 Financial Accounts of the United States',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/z1/',
'notes': 'The Financial Accounts (formerly known as the Flow of Funds accounts) are a set of financial accounts used to track the sources and uses of funds by sector. They are a component of a system of macroeconomic accounts including the National Income and Product accounts (NIPA) and balance of payments accounts, all of which serve as a comprehensive set of information on the economy’s performance.(1) Some important inferences that can be drawn from the Financial accounts are the financial strength of a given sector, new economic trends, changes in the composition of wealth, and development of new financial instruments over time.(1)\r\nSectors are compiled into three categories: households, nonfinancial businesses, and banks. The sources of funds for a sector are its internal funds (savings from income after consumption) and external funds (loans from banks and other financial intermediaries). (1) Funds for a given sector are used for its investments in physical and financial assets. Dividing sources and uses of funds into two categories helps the staff of the Federal Reserve System pay particular attention to external sources of funds and financial uses of funds.(2) One example is whether households are borrowing more from banks—or in other words, whether household debt is rising. Another example might be whether banks are using more of their funds to provide loans to consumers. Transactions within a sector are not shown in the accounts; however, transactions between sectors are.(2) Monitoring the external flows of funds provides insights into a sector’s health and the performance of the economy as a whole. \r\nData for the Financial accounts are compiled from a large number of reports and publications, including regulatory reports such as those submitted by banks, tax filings, and surveys conducted by the Federal Reserve System.(2) The Financial accounts are published quarterly as a set of tables in the Federal Reserve’s Z.1 statistical release.\r\n(1)\tTeplin, Albert M. “The U.S. Flow of Funds Accounts and Their Uses.” Federal Reserve Bulletin, July 2001; http://www.federalreserve.gov/pubs/bulletin/2001/0701lead.pdf.\r\n(2)\tBoard of Governors of the Federal Reserve System. “Guide to the Flow of Funds Accounts.” 2000, http://www.federalreserve.gov/apps/fof/.\r\n\r\nFor questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/z1/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 53,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Gross Domestic Product',
'press_release': True,
'link': 'https://www.bea.gov/data/gdp/gross-domestic-product'},
{'id': 54,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Personal Income and Outlays',
'press_release': True,
'link': 'https://www.bea.gov/data/income-saving/personal-income'},
{'id': 55,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Reports of Condition and Income for All Insured U.S. Commercial Banks',
'press_release': True,
'link': 'https://cdr.ffiec.gov/public/'},
{'id': 59,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'National Population Estimates',
'press_release': False,
'link': 'http://www.census.gov/popest/'},
{'id': 61,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Money Zero Maturity (MZM)',
'press_release': False,
'link': 'http://research.stlouisfed.org/publications/mt/'},
{'id': 62,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Monetary Services Index (MSI)',
'press_release': False,
'link': 'https://research.stlouisfed.org/msi/'},
{'id': 63,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'M2 Related Series',
'press_release': False,
'link': 'http://research.stlouisfed.org/publications/mt/'},
{'id': 64,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Long-Term U.S. Treasury Securities - Market Yield',
'press_release': False},
{'id': 70,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Monthly Treasury Inflation-Indexed Securities',
'press_release': False},
{'id': 71,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Weekly Treasury Inflation-Indexed Securities',
'press_release': False},
{'id': 72,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Daily Treasury Inflation-Indexed Securities',
'press_release': False},
{'id': 78,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'St. Louis Monthly Reserves and Monetary Base',
'press_release': False,
'link': 'http://research.stlouisfed.org/publications/mt/'},
{'id': 79,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'St. Louis Bi-Weekly Reserves and Monetary Base',
'press_release': False,
'link': 'http://research.stlouisfed.org/publications/usfd/'},
{'id': 80,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Treasury Bulletin',
'press_release': True,
'link': 'http://www.fiscal.treasury.gov/fsreports/rpt/treasBulletin/treasBulletin_home.htm'},
{'id': 81,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Fiscal Year Budget Data',
'press_release': False,
'link': 'https://www.whitehouse.gov/omb/historical-tables/'},
{'id': 82,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Economic Report of the President',
'press_release': True,
'link': 'https://www.gpo.gov/fdsys/browse/collection.action?collectionCode=ERP'},
{'id': 86,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Commercial Paper',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/cp/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/cp/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 87,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Transitional Euro Country Exchange Rates',
'press_release': False},
{'id': 89,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Household Debt Service Ratios',
'press_release': True,
'link': 'https://www.federalreserve.gov/releases/DSR/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/housedebt/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 91,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Surveys of Consumers',
'press_release': True,
'link': 'http://www.sca.isr.umich.edu/'},
{'id': 92,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Selected Real Retail Sales Series',
'press_release': False},
{'id': 93,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Supplemental Estimates, Motor Vehicles',
'press_release': True,
'link': 'https://www.bea.gov/data/gdp/gross-domestic-product#collapse86'},
{'id': 94,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Survey of Secondary Market Prices and Yields, and Interest Rates for Home Loans',
'press_release': True},
{'id': 95,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': "Manufacturer's Shipments, Inventories, and Orders (M3) Survey",
'press_release': True,
'link': 'http://www.census.gov/indicator/www/m3/'},
{'id': 97,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'New Residential Sales',
'press_release': True,
'link': 'http://www.census.gov/construction/nrs/'},
{'id': 99,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Budget and Economic Outlook',
'press_release': True,
'link': 'http://www.cbo.gov/topics/budget/budget-and-economic-outlook'},
{'id': 100,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Seasonal Credit Rate',
'press_release': False,
'link': 'https://www.frbdiscountwindow.org/Home/Pages/Discount-Rates/Historical-Discount-Rates'},
{'id': 101,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'FOMC Press Release',
'press_release': True,
'link': 'http://www.federalreserve.gov/fomc/'},
{'id': 102,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Wall Street Journal',
'press_release': True,
'link': 'http://online.wsj.com/public/us'},
{'id': 103,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Discount Rate Meeting Minutes',
'press_release': True,
'link': 'http://www.federalreserve.gov/monetarypolicy/discountrate.htm'},
{'id': 104,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Federal Reserve Bulletin',
'press_release': True,
'link': 'https://www.federalreserve.gov/publications/bulletin.htm'},
{'id': 105,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'St. Louis Weekly Reserves and Monetary Base',
'press_release': False,
'link': 'http://research.stlouisfed.org/publications/usfd/'},
{'id': 106,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'M2 Own Rate',
'press_release': False},
{'id': 107,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Total Factor Productivity for Major Industries',
'press_release': True,
'link': 'https://www.bls.gov/productivity/home.htm'},
{'id': 109,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'State Coincident Indexes',
'press_release': True,
'link': 'https://www.philadelphiafed.org/surveys-and-data/regional-economic-analysis/state-coincident-indexes'},
{'id': 110,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Personal Income by State',
'press_release': True,
'link': 'https://www.bea.gov/data/income-saving/personal-income-by-state'},
{'id': 111,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Annual Estimates of the Population of Metropolitan and Micropolitan Statistical Areas',
'press_release': False,
'link': 'http://www.census.gov/popest/'},
{'id': 112,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'State Employment and Unemployment',
'press_release': True,
'link': 'http://www.bls.gov/sae'},
{'id': 113,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Metropolitan Area Employment and Unemployment',
'press_release': True,
'link': 'http://www.bls.gov/sae/'},
{'id': 116,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Unemployment in States and Local Areas (all other areas)',
'press_release': False,
'link': 'http://www.bls.gov/lau/home.htm',
'notes': 'The Local Area Unemployment Statistics release include monthly and annual-average estimates of civilian labor force, employed people, unemployed people, and unemployment rates for different geographies. These data are based on the Current Population Survey (CPS), the household survey that is the source of the national unemployment rate. For more details, see the frequently asked questions here: https://www.bls.gov/lau/laufaq.htm.'},
{'id': 118,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Annual Estimates of the Population for the U.S. and States, and for Puerto Rico',
'press_release': False,
'link': 'http://www.census.gov/popest/'},
{'id': 119,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Annual Estimates of the Population for Counties',
'press_release': False,
'link': 'http://www.census.gov/popest/'},
{'id': 121,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'H.6 Historical Data',
'press_release': False,
'link': 'http://www.federalreserve.gov/releases/h6/hist/'},
{'id': 122,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'H.4.1 Factors Affecting Reserve Balances (data not included in press release)',
'press_release': False},
{'id': 131,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'G.13 Selected Interest Rates',
'press_release': True,
'link': 'http://federalreserve.gov/releases/g13/',
'notes': 'With the issue dated January 8, 2002 (containing data for December 2001), the Federal Reserve ceased publication of the monthly G.13 statistical release. Monthly interest rates continue to be available on the H.15 release.'},
{'id': 138,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'BEA Regions Employment and Unemployment',
'press_release': False},
{'id': 140,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Gross Domestic Product by State',
'press_release': True,
'link': 'https://www.bea.gov/data/gdp/gdp-state'},
{'id': 143,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Annual Survey of State Government Tax Collections',
'press_release': False,
'link': 'https://www.census.gov/programs-surveys/stc.html'},
{'id': 144,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Residential Vacancies and Homeownership Annual Statistics',
'press_release': False,
'link': 'http://www.census.gov/housing/hvs/'},
{'id': 148,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Housing Units Authorized By Building Permits',
'press_release': False,
'link': 'https://www.census.gov/construction/bps/'},
{'id': 152,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Health Insurance Coverage',
'press_release': False,
'link': 'https://www.census.gov/data/tables/time-series/demo/health-insurance/historical-series/hib.html'},
{'id': 153,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'BEA Regions Health Insurance Coverage',
'press_release': False,
'link': 'http://www.census.gov/data/tables/time-series/demo/health-insurance/historical-series/hib.html'},
{'id': 165,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Australian Foreign Exchange Transactions',
'press_release': False},
{'id': 166,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'German Foreign Exchange Intervention',
'press_release': False},
{'id': 167,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Italian Foreign Exchange Intervention',
'press_release': False},
{'id': 168,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Swiss Foreign Exchange Intervention',
'press_release': False},
{'id': 169,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Turkish Foreign Exchange Intervention',
'press_release': False},
{'id': 170,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. Foreign Exchange Intervention',
'press_release': False},
{'id': 171,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'House Price Index',
'press_release': False,
'link': 'http://www.fhfa.gov/DataTools/Downloads/Pages/House-Price-Index.aspx'},
{'id': 172,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Japan Foreign Exchange Intervention',
'press_release': False,
'link': 'http://www.mof.go.jp/english/international_policy/reference/feio/'},
{'id': 173,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'BEA Regions Housing Units Authorized By Building Permits',
'press_release': False,
'link': 'https://www.census.gov/construction/bps/'},
{'id': 175,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Personal Income by County and Metropolitan Area',
'press_release': True,
'link': 'https://www.bea.gov/data/income-saving/personal-income-county-metro-and-other-areas'},
{'id': 178,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Mexican Foreign Exchange Intervention',
'press_release': False},
{'id': 179,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Quarterly Retail E-Commerce Sales',
'press_release': True,
'link': 'http://www.census.gov/mrts/www/ecomm.html',
'notes': 'Link to the survey provided by the Census https://census.gov/retail/mrts/www/data/pdf/ec_current.pdf'},
{'id': 180,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Unemployment Insurance Weekly Claims Report',
'press_release': True,
'link': 'http://www.dol.gov/ui/data.pdf'},
{'id': 183,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Gasoline and Diesel Fuel Update',
'press_release': False,
'link': 'http://www.eia.gov/petroleum/gasdiesel/'},
{'id': 185,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Interest Rate on Reserve Balances',
'press_release': False,
'link': 'http://www.federalreserve.gov/monetarypolicy/reqresbalances.htm',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/monetarypolicy/reserve-balances.htm\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 186,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'G.5A Foreign Exchange Rates',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/g5a/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/g5a/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 187,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'St. Louis Fed Financial Stress Index',
'press_release': False,
'notes': 'To obtain detailed information regarding the construction of the St. Louis Financial Stress Index, please see the online appendix at\r\nhttps://files.stlouisfed.org/files/htdocs/publications/net/NETJan2010Appendix.pdf'},
{'id': 188,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. Import and Export Price Indexes',
'press_release': True,
'link': 'http://www.bls.gov/mxp/'},
{'id': 189,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Standard & Poors',
'press_release': False,
'link': 'https://us.spindices.com/indices/equity/sp-500'},
{'id': 190,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Primary Mortgage Market Survey',
'press_release': True,
'link': 'http://www.freddiemac.com/pmms/'},
{'id': 191,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Senior Loan Officer Opinion Survey on Bank Lending Practices',
'press_release': True,
'link': 'http://www.federalreserve.gov/boarddocs/SnLoanSurvey/',
'notes': 'For further information, please refer to the Board of Governors of the Federal Reserve System's Senior Loan Officer Opinion Survey on Bank Lending Practices release, online at http://www.federalreserve.gov/boarddocs/SnLoanSurvey/.\r\nFor questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/data/SLOOS%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 192,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Job Openings and Labor Turnover Survey',
'press_release': True,
'link': 'http://www.bls.gov/jlt/'},
{'id': 193,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Money Velocity',
'press_release': False},
{'id': 194,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'ADP National Employment Report',
'press_release': True,
'link': 'http://www.adpemploymentreport.com/'},
{'id': 197,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Dow Jones Averages',
'press_release': False,
'link': 'https://us.spindices.com/index-family/us-equity/dow-jones-averages'},
{'id': 198,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Kansas City Financial Stress Index',
'press_release': True,
'link': 'https://www.kansascityfed.org/data-and-trends/kansas-city-financial-stress-index/'},
{'id': 199,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'S&P CoreLogic Case-Shiller Home Price Indices',
'press_release': True,
'link': 'https://www.spglobal.com/spdji/en/index-family/indicators/sp-corelogic-case-shiller/sp-corelogic-case-shiller-composite/#overview'},
{'id': 200,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'CBOE Market Statistics',
'press_release': False,
'link': 'http://www.cboe.com/data/mktstat.aspx'},
{'id': 201,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'International Indexes of Consumer Prices',
'press_release': False,
'link': 'http://www.bls.gov/fls/intl_consumer_prices.htm'},
{'id': 202,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'International Unemployment Rates and Employment Indexes',
'press_release': False,
'link': 'http://www.bls.gov/fls/intl_unemployment_rates_monthly.htm'},
{'id': 203,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'International Comparisons of Annual Labor Force Statistics',
'press_release': False,
'link': 'http://www.bls.gov/fls/flscomparelf.htm'},
{'id': 204,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'International Comparisons of GDP per Capita and per Hour',
'press_release': True,
'link': 'http://www.bls.gov/fls/intl_gdp_capita_gdp_hour.htm'},
{'id': 205,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Main Economic Indicators',
'press_release': False,
'link': 'http://www.oecd-ilibrary.org/economics/data/main-economic-indicators/main-economic-indicators-complete-database_data-00052-en'},
{'id': 206,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Quarterly National Accounts',
'press_release': False,
'link': 'http://www.oecd-ilibrary.org/economics/data/oecd-national-accounts-statistics_na-data-en'},
{'id': 208,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'State Leading Indexes',
'press_release': True,
'link': 'https://www.philadelphiafed.org/research-and-data/regional-economy/indexes/leading/',
'notes': 'The leading index for each state predicts the six-month growth rate of the state’s coincident index. In addition to the coincident index, the models include other variables that lead the economy: state-level housing permits (1 to 4 units), state initial unemployment insurance claims, delivery times from the Institute for Supply Management (ISM) manufacturing survey, and the interest rate spread between the 10-year Treasury bond and the 3-month Treasury bill.'},
{'id': 209,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'ICE BofA Indices',
'press_release': False,
'link': 'https://www.theice.com/market-data/indices'},
{'id': 212,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Spot Prices',
'press_release': False,
'link': 'http://www.eia.doe.gov/dnav/pet/pet_pri_spt_s1_d.htm'},
{'id': 216,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'E.2 Survey of Terms of Business Lending',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/e2/',
'notes': 'The Board of Governors has discontinued the Survey of Terms of Business Lending (STBL) and the associated E.2 release. The final STBL was conducted in May 2017, and the final E.2 was released on August 2, 2017. The STBL has been replaced by a new Small Business Lending Survey that commenced in February 2018. The new survey is being managed and administered by the Federal Reserve Bank of Kansas City. Results from this new survey can be found at https://www.kansascityfed.org/surveys/small-business-lending-survey/2020q1-small-business-commercial-and-industrial-loan-balances-increase-year-over-year/\r\n\r\nThese data were collected during the middle month of each quarter and were released in the middle of the succeeding month.'},
{'id': 219,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Chicago Fed National Activity Index',
'press_release': True,
'link': 'https://www.chicagofed.org/research/data/cfnai/current-data'},
{'id': 221,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Chicago Fed National Financial Conditions Index',
'press_release': False,
'link': 'https://www.chicagofed.org/publications/nfci/index'},
{'id': 228,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Quarterly Starts and Completions by Purpose and Design',
'press_release': False,
'link': 'http://www.census.gov/construction/nrc/pdf/quarterly_starts_completions.pdf'},
{'id': 229,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Construction Spending',
'press_release': True,
'link': 'http://www.census.gov/construction/c30/c30index.html'},
{'id': 230,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'International Comparisons of Manufacturing Productivity and Unit Labor Cost Trends',
'press_release': True,
'link': 'http://www.bls.gov/ilc/#productivity'},
{'id': 231,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Charge-Off and Delinquency Rates on Loans and Leases at Commercial Banks',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/chargeoff/default.htm',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/chargeoff/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 234,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'World Development Indicators',
'press_release': False,
'link': 'https://datacatalog.worldbank.org/search/dataset/0037712',
'notes': 'The primary World Bank collection of development indicators, compiled from officially-recognized international sources. It presents the most current and accurate global development data available, and includes national, regional and global estimates.'},
{'id': 236,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Monthly Housing Affordability Index',
'press_release': True,
'link': 'https://www.nar.realtor/research-and-statistics/housing-statistics/housing-affordability-index'},
{'id': 238,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Financial Soundness Indicators',
'press_release': False,
'link': 'http://data.imf.org/?sk=9F855EAE-C765-405E-9C9A-A9DC2C1FEE47',
'notes': 'The Financial Soundness Indicators (FSIs) were developed by the IMF, together with the international community, with the aim of supporting macroprudential analysis and assessing strengths and vulnerabilities of financial systems.\r\n \r\nThe website, hosted by the Statistics Department of the IMF, disseminates data and metadata on selected FSIs provided by participating countries. For a description of the various FSIs, as well as the consolidation basis, consolidation adjustments, and accounting rules followed, please refer to the “Concepts and Definitions” document (http://data.imf.org/?sk=9F855EAE-C765-405E-9C9A-A9DC2C1FEE47). The Statistics Department will steadily increase the number of countries reporting FSIs for dissemination on this site.\r\n\r\nReporting countries compile FSI data presented on this website by using different methodologies, which may also vary for different points in time for the same country. Users are advised to consult the accompanying metadata (http://data.imf.org/?sk=9F855EAE-C765-405E-9C9A-A9DC2C1FEE47) to conduct more meaningful cross-country comparisons or to assess the evolution of a given FSI for any of the countries.'},
{'id': 239,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'International Financial Statistics',
'press_release': False,
'link': 'http://www.imf.org/external/data.htm'},
{'id': 240,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'World Economic Outlook',
'press_release': False,
'link': 'http://www.imf.org/external/ns/cs.aspx?id=28',
'notes': 'The World Economic Outlook (WEO) database is created during the biannual WEO exercise, which begins in January and June of each year and results in the April and September WEO publication. Selected series from the publication are available in a database format.\r\n\r\nSee also, the World Economic Outlook Reports (http://www.imf.org/external/ns/cs.aspx?id=29).'},
{'id': 242,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Recession Indicators Series',
'press_release': False,
'link': 'http://www.oecd.org/std/leading-indicators/oecdcompositeleadingindicatorsreferenceturningpointsandcomponentseries.htm',
'notes': "These time series are an interpretation of US Business Cycle Expansions and Contractions data provided by The National Bureau of Economic Research (NBER) at http://www.nber.org/cycles/cyclesmain.html and Organisation of Economic Development (OECD) Composite Leading Indicators: Reference Turning Points and Component Series data provided by the OECD at http://www.oecd.org/std/leading-indicators/oecdcompositeleadingindicatorsreferenceturningpointsandcomponentseries.htm. Our time series are composed of dummy variables that represent periods of expansion and recession. The NBER identifies months and quarters, while the OECD identifies months, of turning points without designating a date within the period that turning points occurred. The dummy variable adopts an arbitrary convention that the turning point occurred at a specific date within the period. The arbitrary convention does not reflect any judgment on this issue by the NBER's Business Cycle Dating Committee or the OECD. A value of 1 is a recessionary period, while a value of 0 is an expansionary period.\r\n\r\nThe recession shading data that we provide initially comes from the source as a list of dates that are either an economic peak or trough. We interpret dates into recession shading data using one of three arbitrary methods. All of our recession shading data is available using all three interpretations. The period between a peak and trough is always shaded as a recession. The peak and trough are collectively extrema. Depending on the application, the extrema, both individually and collectively, may be included in the recession period in whole or in part. In situations where a portion of a period is included in the recession, the whole period is deemed to be included in the recession period. \r\n\r\nThe first interpretation, known as the midpoint method, is to show a recession from the midpoint of the peak through the midpoint of the trough for monthly and quarterly data. For daily data, the recession begins on the 15th of the month of the peak and ends on the 15th of the month of the trough. Daily data is a disaggregation of monthly data. For monthly and quarterly data, the entire peak and trough periods are included in the recession shading. This method shows the maximum number of periods as a recession for monthly and quarterly data. The Federal Reserve Bank of St. Louis uses this method in its own publications.\r\n\r\nThe second interpretation, known as the trough method, is to show a recession from the period following the peak through the trough (i.e. the peak is not included in the recession shading, but the trough is). For daily data, the recession begins on the first day of the first month following the peak and ends on the last day of the month of the trough. Daily data is a disaggregation of monthly data. The trough method is used when displaying data on FRED graphs.\r\n\r\nThe third interpretation, known as the peak method, is to show a recession from the period of the peak to the trough (i.e. the peak is included in the recession shading, but the trough is not). For daily data, the recession begins on the first day of the month of the peak and ends on the last day of the month preceding the trough. Daily data is a disaggregation of monthly data."},
{'id': 245,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Summary Measures of the Foreign Exchange Value of the Dollar',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/h10/summary/default.htm'},
{'id': 249,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Income and Poverty in the United States',
'press_release': True,
'link': 'https://www.census.gov/topics/income-poverty.html'},
{'id': 251,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Harmonized Indices of Consumer Prices (HICP)',
'press_release': False,
'link': 'https://ec.europa.eu/eurostat/web/hicp',
'notes': 'The harmonized index of consumer prices (HICP) is a measure of inflation that is comparable across all countries in the European Union. The HICP is published for all 12 categories of the European classification of individual consumption according to purpose (ECOICOP) that are covered by the HICP.'},
{'id': 254,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Travel Volume Trends',
'press_release': False,
'link': 'http://www.fhwa.dot.gov/policyinformation/travel_monitoring/tvt.cfm'},
{'id': 257,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'NBER Macrohistory Database',
'press_release': False,
'link': 'http://www.nber.org/macrohistory/'},
{'id': 258,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Penn World Table 7.1',
'press_release': False,
'link': 'http://www.rug.nl/research/ggdc/data/pwt/pwt-7.1'},
{'id': 260,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'CredAbility Consumer Distress Index',
'press_release': False,
'link': 'http://www.clearpoint.org/resource-center/consumer-distress-index/'},
{'id': 261,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. Recession Probabilities',
'press_release': True,
'link': 'https://jeremypiger.com/recession_probs/'},
{'id': 262,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Failures and Assistance Transactions',
'press_release': False,
'link': 'https://banks.data.fdic.gov/explore/failures?aggReport=detail&displayFields=NAME%2CCERT%2CFIN%2CCITYST%2CFAILDATE%2CSAVR%2CRESTYPE%2CCOST%2CRESTYPE1%2CCHCLASS1%2CQBFDEP%2CQBFASSET&endFailYear=2021&sortField=FAILDATE&sortOrder=desc&startFailYear=2012'},
{'id': 263,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Debt to Gross Domestic Product Ratios',
'press_release': False,
'notes': 'These series are constructed using debt, deficit, and nominal GDP series.'},
{'id': 264,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Weekly U.S. and State Bond Prices, 1855-1865',
'press_release': False,
'notes': 'The data collection consists of weekly observations of bond prices for U.S. and state bonds from January 1855 through November 1865. The data are drawn from the “Notes on the Money Market” section of The Bankers’ Magazine and Statistical Register; due to limitations of the magazine, The New York Times’ summary of daily trading on the New York Stock Exchange was used to complete each series in the best possible manner.\r\n\r\nFor a more thorough explanation of the collection as well as how it is understood in a historical context, see:\r\nDwyer, G.P, Jr., R.W. Hafer and W.E. Weber. (1999) “Weekly U.S. and State Bond Prices, 1855-1865,” Historical Methods (32:1): 37-42.'},
{'id': 266,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Bank of Japan Accounts',
'press_release': True,
'link': 'http://www.boj.or.jp/en/statistics/boj/other/ac/index.htm/'},
{'id': 267,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'National Accounts - GDP (Eurostat)',
'press_release': True,
'link': 'https://ec.europa.eu/eurostat/web/national-accounts'},
{'id': 268,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'United Kingdom Main Aggregates of National Accounts',
'press_release': True,
'link': 'http://www.ons.gov.uk/ons/taxonomy/search/index.html?newquery=*&nscl=Main+Aggregates+of+National+Accounts&nscl-orig=Main+Aggregates+of+National+Accounts&content-type=publicationContentTypes&sortDirection=DESCENDING&sortBy=pubdate'},
{'id': 269,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'National Accounts of Japan',
'press_release': True,
'link': 'http://www.esri.cao.go.jp/en/sna/menu.html'},
{'id': 270,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Bankstats (Monetary & Financial Statistics)',
'press_release': True,
'link': 'https://www.bankofengland.co.uk/statistics/tables'},
{'id': 271,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Weekly Financial Statements of the Eurosystem',
'press_release': True,
'link': 'https://www.ecb.europa.eu/press/annual-reports-financial-statements/wfs/html/index.en.html'},
{'id': 274,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'University of Louisville and Oklahoma State University: LoDI National Index',
'press_release': True,
'link': 'http://uofllogistics.org/?project=the-lodi-index',
'notes': 'The LoDI Index uses linear regression analysis to combine cargo volume data from rail, barge, air, and truck transit, along with various economic factors. The resulting indicator is designed to predict upcoming changes in the level of logistics and distribution activity in the US and is represented by a value between 1 and 100. An index at or above 50 represents a healthy level of activity in the industry\r\n\r\nThe Greater Louisville and National LoDI Indices were developed by researchers at the University of Louisville. Please contact Dr. Heragu (sunderesh.heragu@okstate.edu), now IE&M Department Head at Oklahoma State University, or Dr. DePuy (depuy@louisville.edu) for additional information.'},
{'id': 275,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Global Financial Development',
'press_release': False,
'link': 'http://data.worldbank.org/data-catalog/global-financial-development'},
{'id': 279,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Economic Policy Uncertainty',
'press_release': False,
'link': 'http://www.policyuncertainty.com/'},
{'id': 280,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Cass Freight Index Report',
'press_release': True,
'link': 'http://www.cassinfo.com/Transportation-Expense-Management/Supply-Chain-Analysis/Transportation-Indexes/Cass-Freight-Index.aspx'},
{'id': 281,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Supplemental Estimates, Underlying Detail Tables',
'press_release': True,
'link': 'https://apps.bea.gov/iTable/index_UD.cfm'},
{'id': 282,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Supplemental Estimates, Underlying Detail Tables, Spliced Series',
'press_release': False},
{'id': 283,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'H.3 Aggregate Reserves of Depository Institutions and the Monetary Base (data not included in press release)',
'press_release': False,
'notes': 'The Board of Governors discontinued the H.3 statistical release on September 17, 2020. For more information, please see the announcement posted on August 20, 2020 (https://www.federalreserve.gov/feeds/h3.html).'},
{'id': 285,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Penn World Table 10.01',
'press_release': True,
'link': 'https://www.rug.nl/ggdc/productivity/pwt/'},
{'id': 286,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Federal Recovery Programs and BEA Statistics',
'press_release': True,
'link': 'https://www.bea.gov/recovery'},
{'id': 287,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Nikkei Indexes',
'press_release': False,
'link': 'http://indexes.nikkei.co.jp/en/nkave/index/profile?idx=nk225'},
{'id': 288,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Quarterly Services Survey',
'press_release': True,
'link': 'http://www.census.gov/services/'},
{'id': 289,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Service Annual Survey',
'press_release': True,
'link': 'https://www.census.gov/programs-surveys/sas.html'},
{'id': 290,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Monthly Wholesale Trade: Sales and Inventories',
'press_release': True,
'link': 'http://www.census.gov/wholesale/index.html',
'notes': 'The Census Bureau conducts the Monthly Wholesale Trade Survey (MWTS) to provide national estimates of monthly sales, end-of-month inventories, and inventories-to-sales ratios by kind of business for wholesale firms located in the United States. Specifically, the MWTS covers wholesale merchants who sell goods on their own account and include such businesses as wholesale merchants or jobbers, industrial distributors, exporters, and importers. Sales offices and branches maintained by manufacturing, refining, or mining firms for the purpose of marketing their products are not covered in this report. Also excluded is NAICS Industry Group 4251: Wholesale Electronic Markets and Agents and Brokers. (Description of the survey as provided by the Census, http://www2.census.gov/wholesale/pdf/mwts/currentwhl.pdf)'},
{'id': 291,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Existing Home Sales',
'press_release': True,
'link': 'http://www.realtor.org/topics/existing-home-sales'},
{'id': 292,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Chicago Fed Midwest Manufacturing Index',
'press_release': True,
'link': 'https://www.chicagofed.org/publications/cfmmi/index',
'notes': 'The Chicago Fed Midwest Manufacturing Index (CFMMI) is a monthly estimate by major industry of manufacturing output in the Seventh Federal Reserve District states of lllinois, Indiana, Iowa, Michigan and Wisconsin. It is a composite index of 15 manufacturing industries that uses hours worked data to measure monthly changes in regional activity.'},
{'id': 295,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Sticky Wages and Sectoral Labor Comovement',
'press_release': False,
'link': 'http://dx.doi.org/10.1016/j.jedc.2008.08.003'},
{'id': 296,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Housing Vacancies and Homeownership',
'press_release': True,
'link': 'http://www.census.gov/housing/hvs/'},
{'id': 298,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Texas Employment Data',
'press_release': True,
'link': 'http://www.dallasfed.org/research/econdata/tx-emp.cfm'},
{'id': 301,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Real Money Stock Measures',
'press_release': False},
{'id': 302,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Cleveland Financial Stress Index',
'press_release': True,
'link': 'https://www.clevelandfed.org/en/newsroom-and-events/publications/economic-commentary/economic-commentary-archives/2012-economic-commentaries/ec-201204-the-cleveland-financial-stress-index-a-tool-for-monitoring-financial-stability.aspx',
'notes': 'The CFSI is a coincident indicator of systemic stress, where a high value of CFSI indicates high systemic financial stress. Units of CFSI are expressed as standardized differences from the mean (z-scores).\r\nThe CFSI tracks stress in six types of markets: credit markets, equity markets, foreign exchange markets, funding markets, real estate markets, and securitization markets.'},
{'id': 304,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Interest Rate Spreads',
'press_release': False},
{'id': 305,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Swiss National Bank Monthly Statistical Bulletin',
'press_release': True,
'link': 'https://data.snb.ch/en'},
{'id': 306,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Swiss National Bank Historical Time Series',
'press_release': True,
'link': 'https://www.snb.ch/en/iabout/stat/statrep/statpubdis/id/statpub_histz_arch#t3',
'notes': 'The series in this release are historical data updated on an infrequent basis.\r\n\r\nMore details about the definitions of the series can be found at http://www.snb.ch/en/mmr/reference/banken_book/source.'},
{'id': 308,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'State and Metro Area Employment, Hours, and Earnings',
'press_release': False,
'link': 'http://www.bls.gov/sae/',
'notes': 'The Bureau of Labor Statistics (BLS) produces all of the unadjusted series in this release. The BLS only produces a selection of seasonally adjusted data; the remaining series are adjusted by The Federal Reserve Bank of St. Louis. Users of these data will find details of the adjustment method and which institution made the adjustment in the series notes.'},
{'id': 311,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Currency and Coin Services',
'press_release': False,
'link': 'http://www.federalreserve.gov/paymentsystems/coin_data.htm'},
{'id': 313,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Sticky Price CPI',
'press_release': True,
'link': 'https://www.frbatlanta.org/research/inflationproject/stickyprice/'},
{'id': 315,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Current Median CPI',
'press_release': True,
'link': 'https://www.clevelandfed.org/indicators-and-data/median-cpi'},
{'id': 316,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'G.20 Finance Companies',
'press_release': True,
'link': 'http://www.federalreserve.gov/releases/g20/',
'notes': 'For questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/g20/%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 317,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'National Rates and Rate Caps - Monthly Update',
'press_release': False,
'link': 'http://www.fdic.gov/regulations/resources/rates/index.html'},
{'id': 319,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'BIS Effective Exchange Rate Indices',
'press_release': False,
'link': 'https://www.bis.org/statistics/eer/index.htm'},
{'id': 320,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Tech Pulse',
'press_release': True,
'link': 'https://www.frbsf.org/economic-research/publications/economic-letter/2009/january/tech-pulse-index/',
'notes': 'The Tech Pulse Index is a coincidence index of activity in the U.S. information technology sector. The index interpreted as the health of the tech sector. The indicators used to compute the index include investment in IT goods, consumption of personal computers and software, employment in the IT sector, industrial production of the technology sector, and shipments by the technology sector. For further information, please visit the Tech Pulse webpage at the Federal Reserve Bank of San Francisco at: https://www.frbsf.org/economic-research/publications/economic-letter/2009/january/tech-pulse-index/.'},
{'id': 321,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Empire State Manufacturing Survey',
'press_release': True,
'link': 'http://www.newyorkfed.org/survey/empire/empiresurvey_overview.html',
'notes': 'Participants from across the state in a variety of industries respond to a questionnaire and report the change in a variety of indicators from the previous month. Respondents also state the likely direction of these same indicators six months ahead. April 2002 is the first report, although survey data date back to July 2001.\r\n\r\nThe survey is sent on the first day of each month to the same pool of about 200 manufacturing executives in New York State, typically the president or CEO. About 100 responses are received. Most are completed by the tenth, although surveys are accepted until the fifteenth.'},
{'id': 322,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Business Leaders Survey',
'press_release': True,
'link': 'http://www.newyorkfed.org/survey/business_leaders/bls_overview.html',
'notes': "The Business Leaders Survey is a monthly survey conducted by the Federal Reserve Bank of New York that asks companies across its District – which includes New York State, Northern New Jersey, and Fairfield County, Connecticut – about recent and expected trends in key business indicators. This survey is designed to parallel the Empire State Manufacturing Survey, though it covers a wider geography and the questions are slightly different. Participants from the service sector respond to a questionnaire and report on a variety of indicators' both in terms of recent and expected changes. While January 2014 is the first published report, survey responses date back to September of 2004 and all historical data are available on our website.\r\n\r\nThe survey is sent on the first business day of each month to the same pool of about 150 business executives, usually the president or CEO, in the region's service sector. In a typical month, about 100 responses are received by around the tenth of the month when the survey closes.\r\n\r\nRespondents come from a wide range of industries outside of the manufacturing sector, with the mix of respondents closely resembling the industry structure of the region. \r\n\r\nThe survey's headline index, general business activity, is a distinct question posed on the survey (as opposed to a composite of responses to other questions). Currently, no indexes are seasonally adjusted since none of the series exhibits stable seasonal patterns from a statistical perspective."},
{'id': 323,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Trimmed Mean PCE Inflation Rate',
'press_release': True,
'link': 'http://www.dallasfed.org/research/pce/',
'notes': 'The Trimmed Mean PCE inflation rate is an alternative measure of core inflation in the price index for personal consumption expenditures (PCE). It is calculated by staff at the Dallas Fed, using data from the Bureau of Economic Analysis (BEA).'},
{'id': 325,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Credit to Non-Financial Sector',
'press_release': False,
'link': 'https://data.bis.org/topics/TOTAL_CREDIT',
'notes': 'All series on credit to the non-financial sector cover 40 economies, both advanced and emerging. They capture the outstanding amount of credit at the end of the reference quarter. Credit is provided by domestic banks, all other sectors of the economy and non-residents. In terms of financial instruments, credit covers the core debt, defined as loans, debt securities and currency & deposits.'},
{'id': 326,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Summary of Economic Projections',
'press_release': False,
'link': 'http://www.federalreserve.gov/monetarypolicy/fomccalendars.htm'},
{'id': 327,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'International Debt Securities',
'press_release': False,
'link': 'https://data.bis.org/topics/IDS'},
{'id': 328,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Nasdaq Daily Index Data',
'press_release': False,
'link': 'https://www.nasdaq.com/',
'notes': 'National Association of Securities Dealers Automated Quotations'},
{'id': 329,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Education Statistics',
'press_release': False,
'link': 'http://data.worldbank.org/data-catalog/ed-stats'},
{'id': 330,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Educational Attainment',
'press_release': False,
'link': 'https://www.census.gov/programs-surveys/acs/',
'notes': 'Multiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010–2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011–2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 331,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Gross Domestic Product by Industry',
'press_release': True,
'link': 'https://www.bea.gov/data/gdp/gdp-industry'},
{'id': 332,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Weekly and Hourly Earnings from the Current Population Survey',
'press_release': False,
'link': 'http://www.bls.gov/cps/earnings.htm',
'notes': 'The earnings data are collected from one-quarter of the Current Population Survey CPS monthly sample and are limited to wage and salary workers. All self-employed workers are excluded. Most series pertain to workers who usually work full time on their sole or primary job. \r\n\r\nEarnings data are available for all workers, with data available by age, race, Hispanic or Latino ethnicity, sex, occupation, usual full- or part-time status, educational attainment, and other characteristics.'},
{'id': 333,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Chicago Fed Midwest Economy Index',
'press_release': True,
'link': 'https://www.chicagofed.org/publications/mei/index',
'notes': 'The Midwest Economy Index (MEI) is a monthly index designed to measure growth in nonfarm business activity in the Seventh Federal Reserve District. It serves as a regional counterpart to the Chicago Fed National Activity Index.'},
{'id': 334,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Labor Force Status Flows from the Current Population Survey',
'press_release': True,
'link': 'http://www.bls.gov/cps/cps_flows.htm'},
{'id': 336,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Selected Property Price Series',
'press_release': False,
'link': 'https://data.bis.org/topics/RPP',
'notes': 'These selected series have been rebased and are presented at a quarterly frequency and updated on a quarterly basis; where the frequency of the series collected is monthly, the quarterly data are calculated as the average of the monthly observations. In addition to the nominal price series, and their growth rates, the data set includes CPI-deflated versions of the series (and their growth rates).'},
{'id': 337,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Federal Reserve Board of Governors Labor Market Conditions Index',
'press_release': False,
'link': 'http://www.federalreserve.gov/econresdata/notes/feds-notes/2014/updating-the-labor-market-conditions-index-20141001.html',
'notes': 'As of August 3, 2017, updates of the labor market conditions index (LMCI) have been discontinued; the July 7, 2017 vintage is the final estimate from this model. We decided to stop updating the LMCI because we believe it no longer provides a good summary of changes in U.S. labor market conditions. Specifically, model estimates turned out to be more sensitive to the detrending procedure than we had expected, the measurement of some indicators in recent years has changed in ways that significantly degraded their signal content, and including average hourly earnings as an indicator did not provide a meaningful link between labor market conditions and wage growth.\r\n\r\nThe LMCI is derived from a dynamic factor model that extracts the primary common variation from 19 labor market indicators.'},
{'id': 341,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Kansas City Fed Labor Market Conditions Indicators',
'press_release': True,
'link': 'https://www.kansascityfed.org/data-and-trends/labor-market-conditions-indicators/',
'notes': 'The Kansas City Fed Labor Market Conditions Indicators (LMCI) are two monthly measures of labor market conditions based on 24 labor market variables. One indicator measures the level of activity in labor markets and the other indicator measures momentum in labor markets.\r\n\r\nA positive value indicates that labor market conditions are above their long-run average, while a negative value signifies that labor market conditions are below their long-run average.'},
{'id': 342,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Natural Gas Spot and Futures Prices (NYMEX)',
'press_release': True,
'link': 'http://www.eia.gov/dnav/ng/ng_pri_fut_s1_d.htm',
'notes': 'Prices are based on delivery at the Henry Hub in Louisiana. Official daily closing prices at 2:30 p.m. from the trading floor of the New York Mercantile Exchange (NYMEX) for a specific delivery month.'},
{'id': 343,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Metro Area Economic Conditions Indexes',
'press_release': False,
'link': 'http://research.stlouisfed.org/wp/more/2014-046/'},
{'id': 345,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Research Consumer Price Index',
'press_release': False,
'link': 'https://www.bls.gov/cpi/research-series/r-cpi-e-home.htm',
'notes': 'The BLS calculates a research price index called the Consumer Price Index for Americans 62 years of age and older, or R-CPI-E. The R-CPI-E is used by those interested in measures of price change specifically based on the spending patterns of the elderly (as defined in the construction of this index). Official uses of the R-CPI-E have been considered by other government agencies but not implemented due to several limitations. These limitations must be considered and understood by potential users of the data, and any conclusions drawn from these analyses should be treated as tentative.\r\n\r\nSee the https://www.bls.gov/cpi/research-series/r-cpi-e-home.htm from more information.'},
{'id': 346,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Small Area Income and Poverty Estimates',
'press_release': True,
'link': 'https://www.census.gov/programs-surveys/saipe.html',
'notes': 'Small Area Income and Poverty Estimates (SAIPE) are produced for school districts, counties, and states. The main objective of this program is to provide updated estimates of income and poverty statistics for the administration of federal programs and the allocation of federal funds to local jurisdictions. These estimates combine data from administrative records, postcensal population estimates, and the decennial census with direct estimates from the American Community Survey to provide consistent and reliable single-year estimates. These model-based single-year estimates are more reflective of current conditions than multi-year survey estimates.'},
{'id': 349,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Transportation Services Index and Seasonally-Adjusted Transportation Data',
'press_release': False,
'link': 'https://data.bts.gov/Research-and-Statistics/Transportation-Services-Index-and-Seasonally-Adjus/bw6n-ddqk'},
{'id': 351,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Manufacturing Business Outlook Survey',
'press_release': True,
'link': 'https://www.philadelphiafed.org/surveys-and-data/regional-economic-analysis/manufacturing-business-outlook-survey',
'notes': 'The Manufacturing Business Outlook Survey is a monthly survey of manufacturers in the Third Federal Reserve District. Participants indicate the direction of change in overall business activity and in the various measures of activity at their plants: employment, working hours, new and unfilled orders, shipments, inventories, delivery times, prices paid, and prices received. The survey has been conducted each month since May 1968.'},
{'id': 352,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Nonmanufacturing Business Outlook Survey',
'press_release': True,
'link': 'https://www.philadelphiafed.org/research-and-data/regional-economy/nonmanufacturing-business-outlook-survey',
'notes': 'The Nonmanufacturing Business Outlook Survey is a monthly survey of nonmanufacturers in the Third Federal Reserve District. Participants indicate the direction of change in overall business activity and in the various measures of activity at their firms, including new orders, sales or revenues, employment, prices, and capital expenditures. Respondents also provide their assessment of general business conditions over the next six months. The survey has been conducted each month since March 2011.'},
{'id': 353,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Alternative Measures of Labor Underutilization for States',
'press_release': True,
'link': 'http://www.bls.gov/lau/stalt.htm'},
{'id': 354,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'An Arbitrage-Free Three-Factor Term Structure Model and the Recent Behavior of Long-Term Yields and Distant-Horizon Forward Rates',
'press_release': False,
'link': 'https://www.federalreserve.gov/data/three-factor-nominal-term-structure-model.htm',
'notes': 'This research reviews a simple three-factor arbitrage-free term structure model estimated by Federal Reserve Board staff and reports results obtained from fitting this model to U.S. Treasury yields since 1990. The model ascribes a large portion of the decline in long-term yields and distant-horizon forward rates since the middle of 2004 to a fall in term premiums. A variant of the model that incorporates inflation data indicates that about two-thirds of the decline in nominal term premiums owes to a fall in real term premiums, but estimated compensation for inflation risk has diminished as well.'},
{'id': 355,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Minimum Wage Rates',
'press_release': False,
'link': 'http://www.dol.gov/whd/minimumwage.htm'},
{'id': 356,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Fixed Assets',
'press_release': True,
'link': 'https://www.bea.gov/data/investment-fixed-assets'},
{'id': 357,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Hours of Wage and Salary Workers on Nonfarm Payrolls by Sector',
'press_release': True,
'link': 'http://www.bls.gov/lpc/hoursdatainfo.htm'},
{'id': 358,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Number of Exporters and Known Value for All Countries on a State-by-State Basis',
'press_release': True,
'notes': "This release comes from the US Census Bureau's Foreign Trade Division. This data set contains state-level export data from the 50 states, the District of Columbia, Puerto Rico and the U.S. Virgin Islands to their international export partner countries. Each annual dataset displays the number of exporters between each state-country pair and the known value of exports from a state to a country in U.S. dollars."},
{'id': 359,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. International Investment Position',
'press_release': True,
'link': 'https://www.bea.gov/data/intl-trade-investment/international-investment-position'},
{'id': 360,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Health Care Satellite Account',
'press_release': False,
'link': 'https://www.bea.gov/products/health-care'},
{'id': 362,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Quarterly Census of Employment and Wages',
'press_release': True,
'link': 'http://www.bls.gov/cew/home.htm'},
{'id': 363,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Monthly Treasury Statement',
'press_release': True,
'link': 'https://fiscaldata.treasury.gov/datasets/monthly-treasury-statement/summary-of-receipts-outlays-and-the-deficit-surplus-of-the-u-s-government'},
{'id': 364,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'St. Louis Fed Price Pressures Measures',
'press_release': False},
{'id': 365,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Primary Commodity Prices',
'press_release': False,
'link': 'https://www.imf.org/en/Research/commodity-prices',
'notes': 'Benchmark prices which are representative of the global market. They are determined by the largest exporter of a given commodity. Prices are period averages in nominal U.S. dollars. Price indices are based in 2005 (average of 2005 = 100).'},
{'id': 366,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Asia and Pacific Regional Economic Outlook',
'press_release': False,
'link': 'http://data.imf.org/?sk=ABFF6C02-73A8-475C-89CC-AD515033E662',
'notes': 'APD Regional Economic Outlook provides information on recent economic developments and prospects for countries in Asia and the Pacific.'},
{'id': 367,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Western Hemisphere Regional Economic Outlook',
'press_release': False,
'link': 'http://data.imf.org/?sk=3E40CD07-7BD1-404F-BFCE-24018D2D85D2'},
{'id': 368,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Middle East and Central Asia Regional Economic Outlook',
'press_release': False,
'link': 'http://data.imf.org/?sk=4CC54C86-F659-4B16-ABF5-FAB77D52D2E6&ss=1390030109571',
'notes': 'The IMF’s Middle East and Central Asia Department (MCD) countries and territories comprise Afghanistan, Algeria, Armenia, Azerbaijan, Bahrain, Djibouti, Egypt, Georgia, Iran, Iraq, Jordan, Kazakhstan, Kuwait, the Kyrgyz Republic, Lebanon, Libya, Mauritania, Morocco, Oman, Pakistan, Qatar, Saudi Arabia, Somalia, Sudan, Syria, Tajikistan, Tunisia, Turkmenistan, the United Arab Emirates, Uzbekistan, the West Bank and Gaza, and Yemen.\r\n\r\nMore information about forecasting methodology is available at http://data.imf.org/?sk=4CC54C86-F659-4B16-ABF5-FAB77D52D2E6&ss=1390288795525.\r\n\r\nThe base year for constant prices differs by nation. More information is available at https://www.imf.org/external/pubs/ft/weo/2015/02/weodata/co.pdf.'},
{'id': 369,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Sub-Saharan Africa Regional Economic Outlook',
'press_release': False,
'link': 'http://data.imf.org/?sk=5778F645-51FB-4F37-A775-B8FECD6BC69B',
'notes': 'The Sub-Saharan Africa Regional Economic Outlook provides information on recent economic developments and prospects for countries in Sub-Saharan Africa. Data for the REO for Sub-Saharan Africa is prepared in conjunction with the semi-annual World Economic Outlook exercises, spring and fall. Data are consistent with the projections underlying the WEO. REO aggregate data may differ from WEO aggregates due to differences in group membership. Composite data for country groups are weighted averages of data for individual countries. Arithmetic weighted averages are used for all concepts except for inflation and broad money, for which geometric averages are used. PPP GDP weights from the WEO database are used for the aggregation of real GDP growth, real non-oil GDP growth, real per capita GDP growth, investment, national savings, broad money, claims on the nonfinancial private sector, and real and nominal effective exchange rates. Aggregates for other concepts are weighted by GDP in U.S. dollars at market exchange rates.'},
{'id': 370,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Financial Access Survey',
'press_release': False,
'link': 'http://data.imf.org/?sk=E5DCAB7E-A5CA-4892-A6EA-598B5463A34C',
'notes': 'The Financial Access Survey is the sole source of global supply-side data on financial inclusion, encompassing internationally-comparable basic indicators of financial access and usage. In addition to providing policy makers and researchers with annual geographic and demographic data access on basic consumer financial services worldwide, the survey is the data source for the G-20 Basic Set of Financial Inclusion Indicators endorsed by the G-20 Leaders at the Los Cabos Summit of June 2012.'},
{'id': 371,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Hornstein-Kudlyak-Lange Non-Employment Index',
'press_release': True,
'link': 'https://www.richmondfed.org/research/national_economy/non_employment_index',
'notes': 'The Hornstein-Kudlyak-Lange Non-Employment Index (NEI) is an alternative to the standard unemployment rate that includes all non-employed individuals and accounts for persistent differences in their labor market attachment. It provides a more comprehensive reading of labor market health and is based on research first published by Richmond Fed economists Andreas Hornstein and Marianna Kudlyak, and McGill University economist Fabian Lange.'},
{'id': 372,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Chicago Fed Survey of Economic Conditions',
'press_release': True,
'link': 'https://www.chicagofed.org/research/data/cfsec/current-data',
'notes': 'What is the Survey of Economic Conditions?\r\nContacts located in the Seventh Federal Reserve District are asked to rate various aspects of economic conditions along a seven-point scale ranging from "large increase" to "large decrease." A series of diffusion indexes summarizing the distribution of responses is then calculated.\r\n\r\nHow are the indexes constructed?\r\nRespondents\' answers on the seven-point scale are assigned a numeric value ranging from +3 to –3. Each diffusion index is calculated as the difference between the number of respondents with answers above their respective average responses and the number of respondents with answers below their respective average responses, divided by the total number of respondents. The index is then multiplied by 100 so that it ranges from +100 to −100 and will be +100 if every respondent provides an above-average answer and –100 if every respondent provides a below-average answer. Respondents with no prior history of responses are excluded from the calculation.\r\n\r\nWhat do the numbers mean?\r\nRespondents\' respective average answers to a question can be interpreted as representing their historical trends, or long-run averages. Thus, zero index values indicate, on balance, average growth (or a neutral outlook) for activity, hiring, capital spending, and cost pressures. Positive index values indicate above-average growth (or an optimistic outlook) on balance, and negative values indicate below-average growth (or a pessimistic outlook) on balance.\r\n\r\nPrior to April 2022, the Chicago Fed Survey of Economic Conditions was named the Chicago Fed Survey of Business Conditions (CFSBC). The name change was made to better represent the survey’s aim and base of respondents. The goal of the survey is to assess the state of the economy in the Seventh Federal Reserve District. Moreover, since the beginning of the survey, it was been filled out by both business and nonbusiness contacts.'},
{'id': 373,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'GDP-Based Recession Indicator Index',
'press_release': True,
'link': 'http://econbrowser.com/recession-index',
'notes': 'This index measures the probability that the U.S. economy was in a recession during the indicated quarter. It is based on a mathematical description of the way that recessions differ from expansions.'},
{'id': 374,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Texas Manufacturing Outlook Survey',
'press_release': True,
'link': 'https://www.dallasfed.org/research/surveys/tmos',
'notes': 'The Texas Manufacturing Outlook Survey (TMOS) is a monthly survey of area manufacturers. Firm executives report on how business conditions have changed for a number of indicators, such as production, new orders, employment, prices and company outlook. Respondents are also asked to report on how they perceive broader economic conditions to have changed (general business activity). For all questions, participants are asked whether the indicator has increased, decreased or remained unchanged. Answers cover changes over the previous month and expectations for activity six months into the future. Participants are given the opportunity to submit comments on current issues that may be affecting their business.'},
{'id': 375,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Overnight Bank Funding Rate Data',
'press_release': False,
'link': 'https://apps.newyorkfed.org/markets/autorates/obfr'},
{'id': 376,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Texas Service Sector Outlook Survey',
'press_release': True,
'link': 'https://www.dallasfed.org/research/surveys/tssos',
'notes': 'The Texas Service Sector Outlook Survey (TSSOS) is a monthly survey of area service sector businesses. Firm executives report on how business conditions have changed for a number of indicators such as revenue, employment, prices and company outlook. Respondents are also asked to report on how they perceive broader economic conditions to have changed (general business activity). For all questions, participants are asked whether the indicator has increased, decreased or remained unchanged. Answers cover changes over the previous month and expectations for activity six months into the future. Participants are given the opportunity to submit comments on current issues that may be affecting their business.\r\n\r\nAbout 230 service-providing firms regularly participate in TSSOS, which began collecting data in January 2007. Respondents are broadly representative of service-producing industries in the private sector. TSSOS includes a breakout for respondents in the retail and wholesale sectors, called the Texas Retail Outlook Survey (TROS). TSSOS questionnaires are electronically transmitted to respondents in the middle of each month, and answers are collected over seven business days. TROS respondents receive a slightly different questionnaire, but the survey period and processing is the same.\r\n\r\nThe service sector makes up the bulk of the Texas economy, accounting for 59 percent of private-sector activity and employing close to 7 million workers. Retailers and wholesalers make up 12 percent of Texas output and account for 1.6 million jobs. Despite the service sector's prominence, there are few timely measures of changes in service sector activity at the state level. TSSOS fills this regional data gap. TSSOS and its retail component, TROS, are highly correlated with monthly changes in regional economic indicators such as private service sector employment, retail employment and retail sales (see related article below).'},
{'id': 377,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Texas Retail Outlook Survey',
'press_release': True,
'link': 'https://www.dallasfed.org/research/surveys/tssos',
'notes': 'The Texas Retail Outlook Survey (TROS) is a monthly survey of area service sector businesses, specifically retail businesses. Firm executives report on how business conditions have changed for a number of indicators such as revenue, employment, prices and company outlook. Respondents are also asked to report on how they perceive broader economic conditions to have changed (general business activity). For all questions, participants are asked whether the indicator has increased, decreased or remained unchanged. Answers cover changes over the previous month and expectations for activity six months into the future. Participants are given the opportunity to submit comments on current issues that may be affecting their business.\r\n\r\nAbout 230 service-providing firms regularly participate in TSSOS, which began collecting data in January 2007. Respondents are broadly representative of service-producing industries in the private sector. TSSOS includes a breakout for respondents in the retail and wholesale sectors, called the Texas Retail Outlook Survey (TROS). TSSOS questionnaires are electronically transmitted to respondents in the middle of each month, and answers are collected over seven business days. TROS respondents receive a slightly different questionnaire, but the survey period and processing is the same.\r\n\r\nThe service sector makes up the bulk of the Texas economy, accounting for 59 percent of private-sector activity and employing close to 7 million workers. Retailers and wholesalers make up 12 percent of Texas output and account for 1.6 million jobs. Despite the service sector's prominence, there are few timely measures of changes in service sector activity at the state level. TSSOS fills this regional data gap. TSSOS and its retail component, TROS, are highly correlated with monthly changes in regional economic indicators such as private service sector employment, retail employment and retail sales (see related article below).'},
{'id': 378,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Federal Funds Data',
'press_release': False,
'link': 'https://apps.newyorkfed.org/markets/autorates/fed%20funds'},
{'id': 379,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Temporary Open Market Operations',
'press_release': False,
'link': 'https://www.newyorkfed.org/markets/data-hub'},
{'id': 382,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Real Trade-Weighted Value of the Dollar by U.S. State',
'press_release': True,
'link': 'https://www.dallasfed.org/research/econdata/rtwvd.aspx',
'notes': "These indexes calculate the inflation-adjusted value of the U.S. dollar against the currencies of countries to which the state exports. The real exchange rates are aggregated across countries for each state using the annual average export share to the country. For the most recent year where export share data is not available, the prior year' number is used instead. The indexes should allow analysts to more precisely identify the exchange rate movements that most affect demand for a state's exports. For more information visit http://www.dallasfed.org/research/econdata/rtwvd.cfm."},
{'id': 383,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Market Value of U.S. Government Debt',
'press_release': True,
'link': 'http://www.dallasfed.org/research/econdata/govdebt.cfm',
'notes': 'For many uses, market value more accurately represents the debt burden faced by the U.S. government than the par value. The par value of government debt, which is reported by the U.S. Treasury Department, reflects interest rates at the time the debt was issued while the market value is adjusted to reflect market interest rates as of the observed period. Federal Reserve Bank of Dallas researchers calculate the market value of U.S. government debt series.'},
{'id': 384,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Characteristics of Minimum Wage Workers',
'press_release': False,
'link': 'http://www.bls.gov/cps/earnings.htm#minwage'},
{'id': 386,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'GDPNow',
'press_release': True,
'link': 'https://www.frbatlanta.org/cqer/research/gdpnow.aspx?panel=1',
'notes': 'The growth rate of real gross domestic product (GDP) is a key indicator of economic activity, but the official estimate is released with a delay. The Federal Reserve Bank of Atlanta\'s GDPNow forecasting model provides a "nowcast" of the official estimate prior to its release.'},
{'id': 387,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Minimum Wage Rate by State',
'press_release': False,
'link': 'https://www.dol.gov/whd/minwage/america.htm'},
{'id': 388,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Banking and Monetary Statistics, 1914-1941',
'press_release': False,
'link': 'https://fraser.stlouisfed.org/title/38',
'notes': 'Contains banking and monetary statistics previously appearing in the Annual Reports of the Board of Governors of the Federal Reserve and the Federal Reserve Bulletin. Includes data on the condition and operation of all banks as well as statistics on non-bank financial institutions, currency, money rates, securities, consumer credit, gold, and international financial developments.'},
{'id': 389,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'A Millennium of Macroeconomic Data for the UK',
'press_release': False,
'link': 'https://www.bankofengland.co.uk/statistics/research-datasets'},
{'id': 391,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Personal Consumption Expenditures by State',
'press_release': True,
'link': 'https://www.bea.gov/data/consumer-spending/state',
'notes': 'Release contains both per capita personal consumption expenditures and personal consumption expenditures by state. This data set also contains sector based data each state.'},
{'id': 394,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Spliced Oil Price',
'press_release': True,
'notes': 'The Spliced Oil Price release was created by the Federal Reserve Bank of St. Louis to expand the history of the monthly West Texas Intermediate oil price series in FRED. We simply combined these two FRED series: https://fred.stlouisfed.org/series/OILPRICE and https://fred.stlouisfed.org/series/MCOILWTICO. From January 1946 through July 2013, the series used is OILPRICE. From August 2013 to present, the series used is MCOILWTICO.'},
{'id': 395,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Families and Living Arrangements',
'press_release': False,
'link': 'https://www.census.gov/topics/families/families-and-households.html'},
{'id': 396,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'G.17.2 Retail Instalment Credit at Furniture and Household Appliance Stores',
'press_release': True},
{'id': 397,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Gross Domestic Product by County and Metropolitan Area',
'press_release': True,
'link': 'https://www.bea.gov/data/gdp/gdp-county-metro-and-other-areas'},
{'id': 399,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Net Migration Flows for Counties and County Equivalents in the United States',
'press_release': True,
'link': 'https://www.census.gov/topics/population/migration/guidance/county-to-county-migration-flows.html',
'notes': 'The American Community Survey (ACS) and the Puerto Rico Community Survey (PRCS) asked members of households whether they lived in the same residence 1 year ago. For people who lived in a different residence, the location of their previous residence is collected.\r\n\r\nACS uses a series of monthly samples to produce estimates. Estimates for geographies of population 65,000 or greater are published annually using these monthly samples. Three years of monthly samples are needed to publish estimates for geographies of 20,000 or greater and five years for smaller geographies. The 5-year dataset is used for the county-to-county migration flows since many counties have a population less than 20,000. The first 5-year ACS dataset covers the years 2005 through 2009.\r\n\r\nMultiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010–2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011–2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 400,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'St. Louis Fed Economic News Index',
'press_release': False,
'link': 'https://research.stlouisfed.org/publications/review/2016/12/05/a-macroeconomic-news-index-for-constructing-nowcasts-of-u-s-real-gross-domestic-product-growth/'},
{'id': 401,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'SOI Tax Stats - Historical Data Tables',
'press_release': False,
'link': 'https://www.irs.gov/statistics/soi-tax-stats-historical-data-tables'},
{'id': 402,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Corporate Bond Yield Curve',
'press_release': False,
'link': 'https://home.treasury.gov/data/treasury-coupon-issues-and-corporate-bond-yield-curve/corporate-bond-yield-curve'},
{'id': 403,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Real Personal Income for States and Metropolitan Areas',
'press_release': True,
'link': 'https://www.bea.gov/data/income-saving/real-personal-income-states-and-metropolitan-areas',
'notes': 'This release contains regional data for States, Metropolitan Portion of States, Nonmetropolitan Portion of States, and Metropolitan Areas. The indicators in this data release include Real Personal Income, Real Per Capita Personal Income, Regional Price Parities, and Implicit Price Deflator.'},
{'id': 406,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Homeownership Rate',
'press_release': False,
'notes': 'The homeownership rate is computed by dividing the estimated total population in owner-occupied units by the estimated total population (ACS 5-year variables B25008_002E and B25008_001E from table B25008, respectively).\r\n\r\nA housing unit is owner-occupied if the owner or co-owner lives in the unit, even if it is mortgaged or not fully paid for. A housing unit is classified as occupied if (i) it is the current place of residence of the person or group of persons living in it at the time of interview or (ii) the occupants are only temporarily absent from the residence for two months or less (e.g., on vacation or a business trip). If all those staying in the unit at the time of the interview plan to stay there for two months or less, the unit is considered to be temporarily occupied and classified as "vacant."\r\n\r\nMultiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010-2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011-2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 408,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Disconnected Youth',
'press_release': False,
'link': 'https://www.census.gov/programs-surveys/acs/',
'notes': 'Disconnected Youth represents the percentage of youth in a county who are between the ages of 16 and 19, who are not enrolled in school, and who are unemployed or not in the labor force.\r\n\r\nMultiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010–2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011–2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 409,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Equifax Credit Quality',
'press_release': False,
'notes': 'Reprinted with permission. Copyright © 2016, Equifax. All rights reserved. Reproduction of median credit score per county in any form is prohibited except with the prior written permission of Equifax.'},
{'id': 410,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Offenses Known to Law Enforcement',
'press_release': False,
'link': 'https://ucr.fbi.gov/ucr-publications',
'notes': "The FBI's Uniform Crime Reporting (UCR) Program collects the number of offenses that come to the attention of law enforcement for violent crime and property crime, as well as data regarding clearances of these offenses. In addition, the FBI collects auxiliary information about these offenses (e.g., time of day of burglaries).\r\n\r\nViolent crime is composed of four offenses: murder and non-negligent manslaughter, rape, robbery, and aggravated assault. Violent crimes are defined in the UCR Program as those offenses that involve force or threat of force.\r\n\r\nProperty crime includes the offenses of burglary, larceny-theft, motor vehicle theft, and arson. The object of the theft-type offenses is the taking of money or property, but there is no force or threat of force against the victims."},
{'id': 412,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Single Parent Households with Children',
'press_release': False,
'notes': 'The single-parent household rate is calculated as the sum of male and female single-parent households with their own children who are younger than 18-years of age divided by total households with their own children who are younger than 18-years of age (ACS 5-year variables S1101_C03_005E, S1101_C04_005E, and S1101_C01_005E respectively from table S1101).\r\n\r\nMultiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However,\r\nthey do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010-2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011-2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification.\r\nhttps://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 413,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Burdened Households',
'press_release': False,
'notes': 'Burdened households are those households who pay 30 percent or more of their household income on housing (such as rent or mortgage expenses).\r\n\r\nThis is calculated as the sum of households with a mortgage spending 30.0-34.9% of their income on selected monthly owner costs, households with a mortgage spending 35.0% or more of their income on selected monthly owner costs, households without a mortgage spending 30.0-34.9% of their income on selected monthly owner costs, households without a mortgage spending 35.0% or more of their income on selected monthly owner costs, households that rent spending 30.0-34.9% of their income on gross rent, and households that rent spending 35.0% or more of their income on gross rent (ACS 5-year variables DP04_0114E, DP04_0115E, DP04_0123E, DP04_0124E, DP04_0141E, and DP04_0142E respectively from table DP04) divided by the sum of the total number of households with a mortgage, the total number of households without a mortgage, and the total number of households that rent (ACS 5-year variables DP04_0110E, DP04_0117E, and DP04_0136E respectively from table DP04). Note that the calculation excludes households where selected monthly owner costs or gross rent cannot be calculated.\r\n\r\nSelected monthly owner costs are the sum of payments for mortgages, deeds of trust, contracts to purchase, or similar debts on the property (including payments for the first mortgage, second mortgages, home equity loans, and other junior mortgages); real estate taxes; fire, hazard, and flood insurance on the property; utilities (electricity, gas, and water and sewer); and fuels (oil, coal, kerosene, wood, etc.). It also includes, where appropriate, the monthly condominium fee for condominiums and mobile home costs (installment loan payments, personal property taxes, site rent, registration fees, and license fees).\r\n\r\nGross rent provides information on the monthly housing cost expenses for renters. Gross rent is the contract rent plus the estimated average monthly cost of utilities (electricity, gas, and water and sewer) and fuels (oil, coal, kerosene, wood, etc.) if these are paid by the renter (or paid for the renter by someone else). Gross rent is intended to eliminate differentials that result from varying practices with respect to the inclusion of utilities and fuels as part of the rental payment. The estimated costs of water and sewer, and fuels are reported on a 12-month basis but are converted to monthly figures for the tabulations.\r\n\r\nMultiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010-2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011-2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 414,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Income Inequality',
'press_release': False,
'notes': 'This data represents the ratio of mean income for the highest quintile (top 20 percent) of earners divided by the mean income of the lowest quintile (bottom 20 percent) of earners.\r\n\r\nMultiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010–2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011–2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 415,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Mean Commute Time',
'press_release': False,
'link': 'https://www.census.gov/programs-surveys/acs/',
'notes': 'Mean commuting time is calculated by dividing the aggregate travel time to work for all workers (in minutes) by the total number of workers, 16-years old and older, who commute (ACS 5-year variables B08013_001E from table B08013 and B08012_001E from table B08012, respectively).\r\n\r\nMultiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010–2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011–2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 416,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'County Poverty Status',
'press_release': False,
'notes': 'The percentage of population below the poverty level comes from American Community Survey (ACS) variable S1701_C03_001E in table S1701.\r\n\r\nMultiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010-2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011-2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification.\r\nhttps://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 417,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Preventable Hospital Admissions',
'press_release': False,
'link': 'https://atlasdata.dartmouth.edu/static/research_data_archive',
'notes': 'Discharges for ambulatory care sensitive conditions per 1,000 medicare enrollees.'},
{'id': 419,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Racial Dissimilarity Index',
'press_release': False,
'notes': 'The Racial Dissimilarity Index measures the percentage of a group's population in a county that would have to move Census tracts for each\r\ntract in the county to have the same percentage of that group as the whole county. Originally developed by Jahn, Schmid and Schrag [1947].\r\n\r\nMore information on measures of segregation can be found at https://dash.harvard.edu/handle/1/2958220 \r\n\r\nMultiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010–2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011–2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 426,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. Treasury-Owned Gold',
'press_release': False,
'link': 'https://fiscaldata.treasury.gov/datasets/status-report-government-gold-reserve/u-s-treasury-owned-gold'},
{'id': 427,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': "Moody's Daily Corporate Bond Yield Averages",
'press_release': False},
{'id': 428,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'DHI Hiring Indicators',
'press_release': False,
'link': 'http://dhihiringindicators.com/'},
{'id': 429,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'County Population Estimates By Race And Ethnicity',
'press_release': False,
'notes': 'Multiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010–2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011–2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 430,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'County Median Age',
'press_release': False,
'notes': 'Multiyear estimates from the American Community Survey (ACS) are "period" estimates derived from a data sample collected over a period of time, as opposed to "point-in-time" estimates such as those from past decennial censuses. ACS 5-year estimate includes data collected over a 60-month period. The date of the data is the end of the 5-year period. For example, a value dated 2014 represents data from 2010 to 2014. However, they do not describe any specific day, month, or year within that time period.\r\n\r\nMultiyear estimates require some considerations that single-year estimates do not. For example, multiyear estimates released in consecutive years consist mostly of overlapping years and shared data. The 2010–2014 ACS 5-year estimates share sample data from 2011 through 2014 with the 2011–2015 ACS 5-year estimates. Because of this overlap, users should use extreme caution in making comparisons with consecutive years of multiyear estimates.\r\n\r\nPlease see "Section 3: Understanding and Using ACS Single-Year and Multiyear Estimates" on publication page 13 (file page 19) of the 2018 ACS General Handbook for a more thorough clarification. https://www.census.gov/content/dam/Census/library/publications/2018/acs/acs_general_handbook_2018.pdf'},
{'id': 431,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Premature Death Rate',
'press_release': False,
'link': 'https://www.cdc.gov/nchs/nvss/deaths.htm',
'notes': "Premature crude death rate is the number of deaths where the deceased is younger than 75 years of age, divided by the population, then multiplied by 100,000. 75 years of age is the standard consideration of a premature death according to the CDC's definition of Years of Potential Life Loss. \r\n\r\nFor more information, see FAQs about death rates:\r\nhttps://wonder.cdc.gov/wonder/help/cmf.html#Frequently%20Asked%20Questions%20about%20Death%20Rates"},
{'id': 432,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'New Patent Assignments',
'press_release': False,
'link': 'https://assignment.uspto.gov/patent/index.html#/patent/search'},
{'id': 433,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Age-Adjusted Premature Death Rate',
'press_release': True,
'link': 'https://www.cdc.gov/nchs/nvss/deaths.htm',
'notes': "Age-adjusted death rates are weighted averages of the age-specific death rates, where the weights represent a fixed population by age. They are used to compare relative mortality risk among groups and over time. An age-adjusted rate represents the rate that would have existed had the age-specific rates of the particular year prevailed in a population whose age distribution was the same as that of the fixed population. Age-adjusted rates should be viewed as relative indexes rather than as direct or actual measures of mortality risk. \r\n\r\nPremature death rate is the number of deaths where the deceased is younger than 75 years of age, divided by the population, then multiplied by 100,000. 75 years of age is the standard consideration of a premature death according to the CDC's definition of Years of Potential Life Loss.\r\n\r\nFor more information, see FAQs about death rates:\r\nhttps://wonder.cdc.gov/wonder/help/cmf.html#Frequently%20Asked%20Questions%20about%20Death%20Rates"},
{'id': 434,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Quarterly Financial Report',
'press_release': True,
'link': 'https://www.census.gov/econ/qfr/'},
{'id': 435,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Advance Economic Indicators',
'press_release': True,
'link': 'https://www.census.gov/econ/indicators/index.html'},
{'id': 436,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Monthly Retail Trade and Food Services',
'press_release': True,
'link': 'https://www.census.gov/retail/index.html'},
{'id': 439,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Mean Household Wages Adjusted by Cost of Living',
'press_release': False,
'link': 'https://www.census.gov/programs-surveys/acs/',
'notes': "Estimated mean household wages in real U.S. Dollars from the American Community Survey adjusted for cost of living using regional price parities from the U.S. Bureau of Economic Analysis' Real Personal Income for States and Metropolitan Areas."},
{'id': 440,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Coinbase Index',
'press_release': False,
'link': 'https://am.coinbase.com/index'},
{'id': 441,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Coinbase Cryptocurrencies',
'press_release': False,
'link': 'https://www.coinbase.com/charts?locale=en-US'},
{'id': 443,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Business Formation Statistics',
'press_release': True,
'link': 'https://www.census.gov/econ/bfs/index.html',
'notes': 'The Business Formation Statistics (BFS) are a product of the U.S. Census Bureau developed in research collaboration with economists affiliated with Board of Governors of the Federal Reserve System, Federal Reserve Bank of Atlanta, University of Maryland, and University of Notre Dame. \r\n\r\nThe Business Formation Statistics (BFS) provide timely and high frequency data on business applications and employer business formations. The BFS measure business initiation activity (Business Application Series) as indicated by applications for an Employer Identification Number (EIN) on the IRS Form SS-4. The BFS also provide information on actual and projected employer business formations (Business Formation Series) that originate from these applications, based on the record of first payroll tax liability for an EIN. In addition, the BFS contain measures of delay in business starts as indicated by the average duration between the application for an EIN and the transition to an employer business.\r\n\r\nThe BFS have data starting July 2004 at a monthly frequency. The data are available nationally, by individual states, and by U.S. Census Regions. Data are also available by two-digit NAICS codes for the nation.'},
{'id': 445,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Secured Overnight Financing Rate Data',
'press_release': True,
'link': 'https://www.newyorkfed.org/markets/reference-rates/sofr'},
{'id': 446,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Labor Force Participation by State',
'press_release': True,
'link': 'https://www.bls.gov/lau/rdscnp16.htm'},
{'id': 447,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'FR Y-14M Large Bank Credit Card and Mortgage Data',
'press_release': True,
'link': 'https://www.philadelphiafed.org/surveys-and-data/large-bank-credit-card-and-mortgage-data',
'notes': 'The Large Bank Consumer Credit Data are based on FR Y-14M credit card and mortgage data provided by the largest financial institutions in the United States.\r\n\r\nThe respondent panel comprises U.S. bank holding companies, U.S. intermediate holding companies of foreign banking organizations, and covered savings and loan holding companies with $100 billion or more in total consolidated assets. These institutions are required to report credit card or first-lien mortgage data if portfolio balances exceed $5 billion or are material relative to Tier 1 capital. Firms with over $100 billion in total consolidated assets that do not meet these thresholds may also voluntarily provide FR Y-14M data. The reporting provides users with aggregate data on credit card and first-lien mortgages including portfolio composition, credit performance, origination activities, credit card payment behavior, and credit card line utilization. This publication will be released on a quarterly frequency.'},
{'id': 449,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. Trade in Goods by State, by NAICS-Based Product',
'press_release': True,
'link': 'https://www.census.gov/foreign-trade/statistics/state/index.html'},
{'id': 450,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Quarterly Survey of Public Pensions',
'press_release': True,
'link': 'https://www.census.gov/programs-surveys/qspp.html'},
{'id': 453,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Distributional Financial Accounts',
'press_release': False,
'link': 'https://www.federalreserve.gov/releases/efa/efa-distributional-financial-accounts.htm',
'notes': "The Distributional Financial Accounts (DFAs) provide a quarterly measure of the distribution of U.S. household wealth since 1989, based on a comprehensive integration of disaggregated household-level wealth data with official aggregate wealth measures. The data set contains the level and share of each balance sheet item on the Financial Accounts' household wealth table (Table B.101.h), for each of four percentile groups of wealth: the top 1 percent, the next 9 percent (i.e., 90th to 99th percentile), the next 40 percent (50th to 90th percentile), and the bottom half (below the 50th percentile). The quarterly frequency makes the data useful for studying the business cycle dynamics of wealth concentration--which are typically difficult to observe in lower-frequency data because peaks and troughs often fall between times of measurement. These data will be updated about 10 or 11 weeks after the end of each quarter, making them a timely measure of the distribution of wealth."},
{'id': 454,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Average Price Data',
'press_release': True,
'link': 'https://www.bls.gov/cpi/factsheets/average-prices.htm'},
{'id': 455,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Quarterly Summary of State & Local Tax Revenue',
'press_release': True,
'link': 'https://www.census.gov/programs-surveys/qtax.html',
'notes': "The Quarterly Summary of State and Local Government Tax Revenue provides quarterly estimates of state and local government tax revenue at a national level, as well as detailed tax revenue data for individual states. This quarterly survey has been conducted continuously since 1962. The information contained in this survey is the most current information available on a nationwide basis for government tax collections. \r\n\r\nFor more information about the survey, visit here: https://www.census.gov/programs-surveys/qtax/about.html\r\n\r\nA Special Note Concerning Revised Data:\r\nRevisions reflect tax collection amounts obtained from three general sources. State and local government respondents have submitted revisions to amounts as originally reported. In other cases, governments have reported data, which we used to replace data that were previously imputed or estimated. Finally, some of the revisions were compiled from government sources, both published and unpublished. For more information, see the survey's methodology here: https://www.census.gov/programs-surveys/qtax/technical-documentation/methodology.html"},
{'id': 456,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Sahm Rule Recession Indicator',
'press_release': False,
'link': 'http://www.hamiltonproject.org/assets/files/Sahm_web_20190506.pdf',
'notes': 'The Sahm Rule identifies signals related to the start of a recession when the three-month moving average of the national unemployment rate (U3) rises by 0.50 percentage points or more relative to its low during the previous 12 months.'},
{'id': 458,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Cotton Production in New England',
'press_release': False,
'link': 'https://www.nber.org/chapters/c1569.pdf',
'notes': 'Data were gathered by the authors from various textile collections deposited at various museums and libraries on the East Coast, and collected from the original business records of textile mills in New England wherever possible. Preference was given to records that were complete and continuous for long periods, and reasonably intelligible.\r\n\r\nReporting techniques differed greatly from mill to mill. To make the data comparable, each mill\'s output was allocated uniformly over the months covered by the accounting period. The monthly figures were then summed to calendar years. The total cotton production for the region is estimated by adding the production of each individual mill with data available for the given period.\r\n\r\nMore details about the data are available in the book chapter "The New England Textile Industry, 1825-60: Trends and Fluctuations" (https://www.nber.org/chapters/c1569.pdf).'},
{'id': 459,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Survey of Business Uncertainty',
'press_release': True,
'link': 'https://www.frbatlanta.org/research/surveys/business-uncertainty.aspx'},
{'id': 460,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Seasonal Factors for Domestic Auto and Truck Production',
'press_release': True,
'link': 'https://www.federalreserve.gov/releases/g17/mvsf.htm'},
{'id': 461,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Energy-Related CO2 Emissions by State',
'press_release': True,
'link': 'https://www.eia.gov/environment/emissions/carbon/index.php'},
{'id': 462,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Housing Inventory Core Metrics',
'press_release': True,
'link': 'https://www.realtor.com/research/data/'},
{'id': 463,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Market Hotness Index',
'press_release': True,
'link': 'https://www.realtor.com/research/reports/hottest-markets/'},
{'id': 465,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Weekly Economic Index (Lewis-Mertens-Stock)',
'press_release': True,
'link': 'https://www.dallasfed.org/research/wei',
'notes': 'The WEI is an index of real economic activity using timely and relevant high-frequency data. It represents the common component of ten different daily and weekly series covering consumer behavior, the labor market, and production. The WEI is scaled to the four-quarter GDP growth rate; for example, if the WEI reads -2 percent and the current level of the WEI persists for an entire quarter, we would expect, on average, GDP that quarter to be 2 percent lower than a year previously. \r\n\r\nThe WEI is a composite of 10 weekly economic indicators: Redbook same-store sales, Rasmussen Consumer Index, new claims for unemployment insurance, continued claims for unemployment insurance, adjusted income/employment tax withholdings (from Booth Financial Consulting), railroad traffic originated (from the Association of American Railroads), the American Staffing Association Staffing Index, steel production, wholesale sales of gasoline, diesel, and jet fuel, and weekly average US electricity load (with the remaining data supplied by Haver Analytics). All series are represented as year-over-year percentage changes. These series are combined into a single index of weekly economic activity.\r\n\r\nFor additional details, including an analysis of the performance of the model, see Lewis, Mertens, and Stock (2020), “U.S. Economic Activity during the Early Weeks of the SARS-Cov-2 Outbreak.” at https://www.newyorkfed.org/research/staff_reports/sr920.\r\n\r\nThis index has been developed by Daniel Lewis, an economist in the Federal Reserve Bank of New York, Karel Mertens, a senior economic policy advisor at the Federal Reserve Bank of Dallas, and James Stock, the Harold Hitchings Burbank Professor of Political Economy, Faculty of Arts and Sciences of Harvard University.\r\n\r\nThe index is not an official forecast of the Federal Reserve Bank of New York, its president, the Federal Reserve System, or the Federal Open Market Committee.'},
{'id': 468,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Weekly Business Formation Statistics',
'press_release': True,
'link': 'https://www.census.gov/econ/bfs/index.html',
'notes': "The Business Formation Statistics (BFS) are an experimental data product of the U.S. Census Bureau developed in research collaboration with economists affiliated with Board of Governors of the Federal Reserve System, Federal Reserve Bank of Atlanta, University of Maryland, and University of Notre Dame. The BFS provide timely and high frequency information on new business applications and formations in the United States.\r\n\r\nThe BFS data cover Employer Identification Number (EIN) applications made in the United States, including those associated with starting a new employer business. EINs are IDs used by business entities for tax purposes. Data are available as both nationwide and individual states' statistics. \r\n\r\nThe Business Application Series contain 4 filtered series of EIN applications, measuring selected groupings based on a variety of factors: business applications, high-propensity business applications, business applications with planned wages, and business applications from corporations."},
{'id': 469,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'State Unemployment Insurance Weekly Claims Report',
'press_release': True,
'link': 'https://oui.doleta.gov/unemploy/DataDashboard.asp'},
{'id': 470,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'World Uncertainty Index',
'press_release': False,
'link': 'https://worlduncertaintyindex.com/data/',
'notes': 'The World Uncertainty Index is computed by counting the percent of word "uncertain" (or its variant) in the Economist Intelligence Unit (EIU) country reports. The WUI is then rescaled by multiplying by 1,000,000. A higher number means higher uncertainty and vice versa. For example, an index of 200 corresponds to the word uncertainty accounting for 0.02 percent of all words, which—given the EIU reports are on average about 10,000 words long—means about 2 words per report.\r\n\r\nSimilarly, the World Pandemic Uncertainty Index is constructed by counting the percent of times uncertainty is mentioned within a proximity to a word related to pandemics, while the index of discussion about pandemics is constructed by counting the percent of times a word related to pandemics is mentioned in the EIU country reports, and then are re-scaled by multiplying by 1,000.'},
{'id': 471,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Manufactured Housing Survey',
'press_release': True,
'link': 'https://www.census.gov/programs-surveys/mhs.html'},
{'id': 472,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Daily Federal Funds Rate',
'press_release': False,
'link': 'https://research.stlouisfed.org/wp/more/2020-016'},
{'id': 473,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Optimal Blue Mortgage Market Indices',
'press_release': False,
'link': 'https://www2.optimalblue.com/obmmi/',
'notes': 'Optimal Blue Mortgage Market Indices™ (OBMMI™) is calculated from actual locked rates with consumers across over one-third of all mortgage transactions nationwide. OBMMI includes multiple mortgage pricing indices developed around the most popular products and specific borrower and loan level attributes.'},
{'id': 476,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Job Postings on Indeed',
'press_release': True,
'link': 'http://press.indeed.com/',
'notes': 'Indeed calculates the percentage change in seasonally-adjusted job postings since February 1, 2020, using a 7-day trailing average. February 1, 2020, is the pre-pandemic baseline. Indeed seasonally adjusts each series based on historical patterns in 2017, 2018, and 2019. Each series, including the national trend, occupational sectors, and sub-national geographies, is seasonally adjusted separately. Indeed switched to this new methodology in January 2021 and now reports all historical data using this new methodology. Historical numbers have been revised and may differ significantly from originally reported values. The new methodology applies a detrended seasonal adjustment factor to the percentage change in job postings.\r\n\r\nIndices are calculated for the U.S., Australia, Canada, Germany, Ireland, France, and the U.K. In addition for the U.S., indices are calculated for states, the largest metro areas by population.\r\n\r\nFor Frequently Asked Questions regarding Indeed Data, visit https://www.hiringlab.org/indeed-data-faq/.\r\n\r\nCopyrighted: Pre-approval required. Contact Indeed to request permission to use the data at their contact information at https://github.com/hiring-lab/data#readme.\r\n\r\nEnd Users are excluded of any warranty and liability on the part of Indeed for the accuracy of the Indeed Data. End Users will refrain from any external distribution of Indeed Data except in oral or written presentations, provided that such portions or derivations are incidental to and supportive of such presentations and, provided further that the End Users shall not distribute or disseminate in such presentations any amount of Indeed Data which could cause such presentations to be susceptible to use substantially as a source of or substitute for Indeed Data. End Users agree to credit Indeed as the source and owner of the Indeed Data when making it available to third parties in any permissible manner as well as in internal use. End Users agree to not sell or otherwise provide the Indeed Data obtained from Licensee to third parties.'},
{'id': 477,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Monthly State Retail Sales',
'press_release': True,
'link': 'https://www.census.gov/retail/state_retail_sales.html',
'notes': "The Monthly State Retail Sales (MSRS) is the Census Bureau's experimental data product featuring modeled state-level retail sales. This is a blended data product using Monthly Retail Trade Survey data, administrative data, and third-party data. Year-over-year percent changes are available for Total Retail Sales excluding Nonstore Retailers as well as 11 retail North American Industry Classification System (NAICS) retail subsectors. These data are provided by state and NAICS codes beginning with January 2019. The Census Bureau plans to continue to improve the methodology to be able to publish more data in the future.\r\n\r\nUsers are encouraged to read the overview at https://www.census.gov/retail/mrts/www/statedata/msrs_overview.pdf"},
{'id': 478,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Pandemic Claims Weekly Report',
'press_release': True,
'link': 'https://oui.doleta.gov/unemploy/DataDashboard.asp'},
{'id': 479,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Consumer Expenditure Surveys',
'press_release': True,
'link': 'https://www.bls.gov/cex/',
'notes': 'The Consumer Expenditure Surveys (CE) program provides data on expenditures, income, and demographic characteristics of consumers in the United States. CE data are primarily used to revise the relative importance of goods and services in the market basket of the Consumer Price Index.\r\n\r\nThe CE surveys collect data that fall into one of the following major expenditure categories: Alcoholic beverages, Apparel and services, Cash contributions, Education, Entertainment, Food, Healthcare, Housing, Miscellaneous, Personal care products and services, Personal insurance and pensions, Reading, Tobacco products and smoking supplies, and Transportation.'},
{'id': 480,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Total Energy',
'press_release': True,
'link': 'https://www.eia.gov/totalenergy/data/monthly/#summary',
'notes': 'U.S. total energy production, prices, carbon dioxide emissions, and consumption of energy from all sources by sector.'},
{'id': 481,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': "The Federal Reserve System's Weekly Balance Sheet Since 1914",
'press_release': True,
'link': 'https://sites.krieger.jhu.edu/iae/files/2018/07/Federal-Reserve-Systems-Weekly-Balance-Sheet-Since-1914.pdf'},
{'id': 482,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'FDIC Quarterly Banking Profile',
'press_release': True,
'link': 'https://www.fdic.gov/analysis/quarterly-banking-profile/',
'notes': 'The Quarterly Banking Profile is a quarterly publication that provides the earliest comprehensive summary of financial results for all FDIC-insured institutions.\r\n\r\nSee Notes to Users at https://www.fdic.gov/analysis/quarterly-banking-profile/qbp/timeseries/qbpnot.pdf for more information.'},
{'id': 483,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'SOFR Averages and Index Data',
'press_release': True,
'link': 'https://www.newyorkfed.org/markets/reference-rates/sofr-averages-and-index',
'notes': 'As an extension of the Secured Overnight Financing Rate (SOFR), the SOFR Averages are compounded averages of the SOFR over rolling 30-, 90-, and 180-calendar day periods.\r\n\r\nThe SOFR Index measures the cumulative impact of compounding the SOFR on a unit of investment over time, with the initial value set to 1 on April 2, 2018, the first value date of the SOFR. The SOFR Index value reflects the effect of compounding the SOFR each business day and allows the calculation of compounded SOFR averages over custom time periods.'},
{'id': 484,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Key ECB Interest Rates',
'press_release': True,
'link': 'https://www.ecb.europa.eu/stats/policy_and_exchange_rates/key_ecb_interest_rates/html/index.en.html'},
{'id': 485,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. Granted Utility Patents by Counties and CBSAs',
'press_release': False,
'link': 'https://www.uspto.gov/web/offices/ac/ido/oeip/taf/reports.htm',
'notes': 'Utility patents are patents for invention. Patent origin is determined by the residence of the first-named inventor.\r\n\r\nFor more information on patent types, see https://www.uspto.gov/patents/basics/types-patent-applications.\r\n\r\nFor more information on CBSA data, see https://www.uspto.gov/web/offices/ac/ido/oeip/taf/cls_cbsa/explan_cls_cbsa.htm.\r\n\r\nFor more information on county data, see https://www.uspto.gov/web/offices/ac/ido/oeip/taf/countyall/explan_countyall.htm.'},
{'id': 486,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'U.S. Granted Patents by States, Territories, and Countries',
'press_release': False,
'link': 'https://www.uspto.gov/web/offices/ac/ido/oeip/taf/reports_stco.htm',
'notes': "Patent origin is determined by the residence of the first-named inventor. Patents granted are further broken down by utility, plant, design, and reissue patents.\r\n\r\nUtility patents are patents for invention.\r\n\r\nA plant patent is granted by the United States government to an inventor (or the inventor's heirs or assigns) who has invented or discovered and asexually reproduced a distinct and new variety of plant, other than a tuber propagated plant or a plant found in an uncultivated state.\r\n\r\nA design consists of the visual ornamental characteristics embodied in, or applied to, an article of manufacture. Since a design is manifested in appearance, the subject matter of a design patent application may relate to the configuration or shape of an article, to the surface ornamentation applied to an article, or to the combination of configuration and surface ornamentation. A design for surface ornamentation is inseparable from the article to which it is applied and cannot exist alone. It must be a definite pattern of surface ornamentation, applied to an article of manufacture.\r\n\r\nA reissue application is filed to correct an error in the patent, where, as a result of the error, the patent is deemed wholly or partly inoperative or invalid. An error in the patent arises out of an error in conduct which was made in the preparation and/or prosecution of the application which became the patent.\r\n\r\nFor more information on patent types, see https://www.uspto.gov/patents/basics/types-patent-applications.\r\n\r\nFor more information on the data, see https://www.uspto.gov/web/offices/ac/ido/oeip/taf/brochure.htm."},
{'id': 487,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Index of Global Real Economic Activity',
'press_release': True,
'link': 'https://www.dallasfed.org/research/igrea'},
{'id': 488,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Brave-Butters-Kelley Indexes',
'press_release': True,
'link': 'https://www.ibrc.indiana.edu/bbki/',
'notes': 'The Brave-Butters-Kelley Indexes (BBKI) are the byproduct of research originally conducted by the Federal Reserve Bank of Chicago. Currently, the BBKI are maintained and produced by the Indiana Business Research Center at the Kelley School of Business at Indiana University. The BBK Coincident and Leading Indexes and Monthly GDP Growth for the U.S. are constructed from a collapsed dynamic factor analysis of a panel of 490 monthly measures of real economic activity and quarterly real GDP growth.'},
{'id': 489,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'AD&Co US Mortgage High Yield Index',
'press_release': True,
'link': 'https://www.ad-co.com/riskvaldynamics#crt-index',
'notes': 'The AD&Co U.S. Mortgage High-Yield Index serves as an informational index and is not for commercial-use purposes. The Index’s accuracy, completeness, timeliness and suitability for any purpose are not guaranteed. The Index does not constitute (1) investment, legal, accounting, tax, or other professional advice or (2) any recommendation or solicitation to purchase, hold, sell, or otherwise deal in any investment. This Index has been prepared for general informational purposes, without consideration of the circumstances or objectives of any particular investor. Any reliance on the Index is at the reader’s sole risk. All investment is subject to numerous risks, known and unknown. Past performance is no guarantee of future results. For investment advice, seek a qualified investment professional. Not for redistribution without permission. Note: An affiliate of Andrew Davidson & Co., Inc. engages in trading activities in investments that may be the same or similar to those featured in the Index.'},
{'id': 490,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Industry Productivity',
'press_release': True,
'link': 'https://www.bls.gov/mfp/'},
{'id': 491,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'The Effects of the 1930s HOLC "Redlining" Maps',
'press_release': False,
'link': 'https://www.chicagofed.org/publications/working-papers/2017/wp2017-12',
'notes': 'The authors study the effects of the 1930s-era HOLC "redlining" maps on the long-run trajectories of neighborhoods. They calculate the data based on U.S. Census estimates for each area matched to the geocoded HOLC Neighborhoods, which are based on the geocoded renderings of the original Home Owners Loan Corporation (HOLC) maps for 149 cities.'},
{'id': 492,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'SONIA Interest Rate Benchmark',
'press_release': True,
'link': 'https://www.bankofengland.co.uk/markets/sonia-benchmark',
'notes': 'SONIA is a measure of the rate at which interest is paid on sterling short-term wholesale funds in circumstances where credit, liquidity and other risks are minimal.\r\n\r\nOn each London business day, SONIA is measured as the trimmed mean, rounded to four decimal places, of interest rates paid on eligible sterling denominated deposit transactions. \r\n\r\nThe trimmed mean is calculated as the volume-weighted mean rate, based on the central 50 per cent of the volume-weighted distribution of rates.'},
{'id': 494,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Chicago Fed Advance Retail Trade Summary',
'press_release': True,
'link': 'https://www.chicagofed.org/publications/carts/index'},
{'id': 499,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'EONIA: Euro Interbank Offered Rate',
'press_release': False,
'link': 'https://sdw.ecb.europa.eu/browse.do?node=9689692',
'notes': 'The EONIA (European Overnight Index Average) rate is the closing rate for the overnight maturity calculated by collecting data on unsecured overnight lending in the euro area provided by banks belonging to the EONIA panel.'},
{'id': 500,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Inflation Expectations',
'press_release': False,
'link': 'https://www.clevelandfed.org/indicators-and-data/inflation-expectations'},
{'id': 502,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Euro Short Term Rate',
'press_release': True,
'link': 'https://www.ecb.europa.eu/stats/financial_markets_and_interest_rates/euro_short-term_rate/html/index.en.html',
'notes': 'The euro short-term rate (€STR) reflects the wholesale euro unsecured overnight borrowing costs of banks located in the euro area. The €STR is published on each TARGET2 business day based on transactions conducted and settled on the previous TARGET2 business day (the reporting date “T”) with a maturity date of T+1 which are deemed to have been executed at arm’s length and thus reflect market rates in an unbiased way.'},
{'id': 503,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Zillow Home Value Index (ZHVI)',
'press_release': True,
'link': 'https://www.zillow.com/research/data/',
'notes': 'One of Zillow’s most cited metrics is ZHVI, the Zillow Home Value Index. \r\n\r\nIt tells us the typical home value in a given geography (metro area, city, ZIP code, etc.), now and over time.'},
{'id': 504,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Historical Overnight AMERIBOR Unsecured Interest Rate',
'press_release': True,
'link': 'https://ameribor.net/',
'notes': 'AMERIBOR® (American Interbank Offered Rate) is a transparent benchmark interest rate based on overnight unsecured loans transacted on the American Financial Exchange (AFX). AMERIBOR® reflects the actual borrowing costs of thousands of small, medium, and regional banks across America. AMERIBOR® is also useful for larger banks and financial institutions that do business with these banks, as well as small and middle market companies.'},
{'id': 505,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Community Bank Sentiment Index',
'press_release': True,
'link': 'https://www.csbs.org/cbindex',
'notes': 'The Community Bank Sentiment Index is an index derived from quarterly polling of community bankers across the nation. As community bankers answer questions about their outlook on the economy, their answers are analyzed and compiled into a single number. The diffusion index is derived from responses to seven survey questions designed to indicate the direction of change in business conditions, monetary policy, regulatory burden, capital spending, operations expansion, profitability, and franchise value. An index reading of 100 indicates a neutral sentiment, while anything above 100 indicates a positive sentiment, and anything below 100 indicates negative sentiment.'},
{'id': 571,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Senior Credit Officer Opinion Survey on Dealer Financing Terms',
'press_release': True,
'link': 'https://www.federalreserve.gov/data/scoos.htm',
'notes': 'The Senior Credit Officer Opinion Survey on Dealer Financing Terms (SCOOS) is a quarterly survey providing information about the availability and terms of credit in securities financing and over-the counter (OTC) derivatives markets, which are important conduits for leverage in the financial system. The participating institutions account for most of the dealer financing of dollar-denominated securities to non-dealers and are the most active intermediaries in OTC derivatives markets. The survey is directed to senior credit officers responsible for maintaining a consolidated perspective on the management of credit risks. For further information, please refer to the SCOOS release at the Board of Governor’s website: www.federalreserve.gov/data/scoos.htm. \r\n\r\nIMPORTANT: Although the raw data series are constructed as counts for each offered response to a survey question, the data are intended to be viewed as grouped by question, rather than by individual responses. We recommend that it be accessed through the below release table for appropriate context.\r\n\r\nFor questions on the data, please contact the data source: https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/data/scoos%\r\nFor questions on FRED functionality, please contact: https://fred.stlouisfed.org/contactus/'},
{'id': 605,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Underlying Inflation Gauge (UIG)',
'press_release': True,
'link': 'https://www.newyorkfed.org/research/policy/underlying-inflation-gauge',
'notes': 'The Underlying Inflation Gauge is a monthly estimate of trend inflation released by the Federal Reserve Bank of New York. There are two measures of trend inflation constructed from a dynamic factor model of the consumer price index series and several macroeconomic and financial variables. For more information, see the following link: https://www.newyorkfed.org/research/policy/underlying-inflation-gauge'},
{'id': 637,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Wage Growth Tracker',
'press_release': True,
'link': 'https://www.atlantafed.org/chcs/wage-growth-tracker',
'notes': 'The Atlanta Fed's Wage Growth Tracker is a measure of the nominal wage growth of individuals. It is constructed using microdata from the Current Population Survey (CPS), and is the median percent change in the hourly wage of individuals observed 12 months apart. \r\n\r\nFor more details about this release from the Federal Reserve Bank of Atlanta, visit their Wage Growth Tracker webpage (https://www.atlantafed.org/chcs/wage-growth-tracker?panel=2).'},
{'id': 670,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Macroeconomic Uncertainty Index for United States',
'press_release': True,
'link': 'https://www.sydneyludvigson.com/macro-and-financial-uncertainty-indexes'},
{'id': 705,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Financial and Real Uncertainty Indexes',
'press_release': True,
'link': 'https://www.sydneyludvigson.com/macro-and-financial-uncertainty-indexes'},
{'id': 736,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Visa Spending Momentum Index',
'press_release': True,
'link': 'https://usa.visa.com/partner-with-us/visa-consulting-analytics/spending-momentum-index.html'},
{'id': 737,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'National Housing Survey',
'press_release': True,
'link': 'https://www.fanniemae.com/research-and-insights/surveys-indices/national-housing-survey',
'notes': 'The monthly National Housing Survey® is a nationally representative telephone survey polling 1,000 consumers a month about owning and renting a home, home and rental price changes, the economy, household finances, and overall consumer confidence. Respondents are asked more than 100 questions, six of which are distilled into a single indicator – the Home Purchase Sentiment Index®, or “HPSI” – designed to provide signals on future housing outcomes.'},
{'id': 738,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Quits and Layoffs to Nonemployment Based on the Consumer Population Survey (CPS)',
'press_release': True,
'link': 'https://sites.google.com/qlmonthly.com/home/data',
'notes': 'The Ellieroth and Michaud (EM) quit and layoff collection track the shares (percentage) of U.S. workers who quit and who are laid off to non-employed in a given month based on the Current Population Survey (CPS). Series tracking subsequent labor force exit rates of each group are also provided. These series provide timely indicators of quits, layoffs, and labor supply for the U.S. economy.'},
{'id': 739,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Kansas City Fed Policy Rate Uncertainty',
'press_release': True,
'link': 'https://www.kansascityfed.org/data-and-trends/kansas-city-fed-policy-rate-uncertainty/',
'notes': 'The Kansas City Fed’s Measure of Policy Rate Uncertainty (KC PRU) is a daily measure of market-based uncertainty regarding where short-term U.S. interest rates will be one year in the future.'},
{'id': 769,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Fujita, Moscarini, and Postel-Vinay Employer-to-Employer Transition Probability',
'press_release': True,
'link': 'https://www.philadelphiafed.org/surveys-and-data/macroeconomic-data/employer-to-employer-transition-probability'},
{'id': 1033,
'realtime_start': '2025-09-29',
'realtime_end': '2025-09-29',
'name': 'Select time series based on the U.S. Survey of Working Arrangements and Attitudes (SWAA)',
'press_release': False,
'link': 'https://wfhresearch.com/data/'}]}
#DataFrame of response
pd.DataFrame(data['releases']).head()
| id | realtime_start | realtime_end | name | press_release | link | notes | |
|---|---|---|---|---|---|---|---|
| 0 | 9 | 2025-09-29 | 2025-09-29 | Advance Monthly Sales for Retail and Food Serv... | True | http://www.census.gov/retail/ | The U.S. Census Bureau conducts the Advance Mo... |
| 1 | 10 | 2025-09-29 | 2025-09-29 | Consumer Price Index | True | http://www.bls.gov/cpi/ | NaN |
| 2 | 11 | 2025-09-29 | 2025-09-29 | Employment Cost Index | True | http://www.bls.gov/ncs/ect | NaN |
| 3 | 13 | 2025-09-29 | 2025-09-29 | G.17 Industrial Production and Capacity Utiliz... | True | http://www.federalreserve.gov/releases/g17/ | For questions on the data, please contact the ... |
| 4 | 14 | 2025-09-29 | 2025-09-29 | G.19 Consumer Credit | True | http://www.federalreserve.gov/releases/g19/ | For questions on the data, please contact the ... |
Finding Series#
From the search documentation here.
url = f'https://api.stlouisfed.org/fred/series/search?search_text=consumer+price+index&api_key={api_key}&file_type=json'
#make request turn into json
r = requests.get(url)
data = r.json()
type(data)
dict
data
{'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'order_by': 'search_rank',
'sort_order': 'desc',
'count': 30392,
'offset': 0,
'limit': 1000,
'seriess': [{'id': 'CPIAUCSL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:02-05',
'popularity': 98,
'group_popularity': 98,
'notes': 'The Consumer Price Index for All Urban Consumers: All Items (CPIAUCSL) is a price index of a basket of goods and services paid by urban consumers. Percent changes in the price index measure the inflation rate between any two time periods. The most common inflation metric is the percent change from one year ago. It can also represent the buying habits of urban consumers. This particular index includes roughly 88 percent of the total population, accounting for wage earners, clerical workers, technical workers, self-employed, short-term workers, unemployed, retirees, and those not in the labor force.\r\n\r\nThe CPIs are based on prices for food, clothing, shelter, and fuels; transportation fares; service fees (e.g., water and sewer service); and sales taxes. Prices are collected monthly from about 4,000 housing units and approximately 26,000 retail establishments across 87 urban areas. To calculate the index, price changes are averaged with weights representing their importance in the spending of the particular group. The index measures price changes (as a percent change) from a predetermined reference date. In addition to the original unadjusted index distributed, the Bureau of Labor Statistics also releases a seasonally adjusted index. The unadjusted series reflects all factors that may influence a change in prices. However, it can be very useful to look at the seasonally adjusted CPI, which removes the effects of seasonal changes, such as weather, school year, production cycles, and holidays.\r\n\r\nThe CPI can be used to recognize periods of inflation and deflation. Significant increases in the CPI within a short time frame might indicate a period of inflation, and significant decreases in CPI within a short time frame might indicate a period of deflation. However, because the CPI includes volatile food and oil prices, it might not be a reliable measure of inflationary and deflationary periods. For a more accurate detection, the core CPI (CPILFESL (https://fred.stlouisfed.org/series/CPILFESL)) is often used. When using the CPI, please note that it is not applicable to all consumers and should not be used to determine relative living costs. Additionally, the CPI is a statistical measure vulnerable to sampling error since it is based on a sample of prices and not the complete average.\r\n\r\nFor more information on the CPI, see the Handbook of Methods (https://www.bls.gov/opub/hom/cpi/), the release notes and announcements (https://www.bls.gov/cpi/), and the Frequently Asked Questions (https://www.bls.gov/cpi/questions-and-answers.htm) (FAQs).'},
{'id': 'CPIAUCNS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in U.S. City Average',
'observation_start': '1913-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:02-05',
'popularity': 81,
'group_popularity': 98,
'notes': 'Handbook of Methods (https://www.bls.gov/opub/hom/pdf/cpihom.pdf)\nUnderstanding the CPI: Frequently Asked Questions (https://www.bls.gov/cpi/questions-and-answers.htm)'},
{'id': 'CUUS0000SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:41:20-05',
'popularity': 42,
'group_popularity': 98},
{'id': 'FPCPITOTLZGUSA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for the United States',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:02-05',
'popularity': 87,
'group_popularity': 87,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'PCEPI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Chain-type Price Index',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:01-05',
'popularity': 85,
'group_popularity': 85,
'notes': "BEA Account Code: DPCERG\r\n\r\nThe Personal Consumption Expenditures Price Index is a measure of the prices that people living in the United States, or those buying on their behalf, pay for goods and services. The change in the PCE price index is known for capturing inflation (or deflation) across a wide range of consumer expenses and reflecting changes in consumer behavior. For example, if the price of beef rises, shoppers may buy less beef and more chicken. \r\n\r\nThe PCE Price Index is produced by the Bureau of Economic Analysis (BEA), which revises previously published PCE data to reflect updated information or new methodology, providing consistency across decades of data that's valuable for researchers. They also offer the series as a Chain-Type index, as above. The PCE price index is used primarily for macroeconomic analysis and forecasting.\r\n\r\nThe PCE Price index is the Federal Reserve’s preferred measure of inflation. The PCE Price Index is similar to the Bureau of Labor Statistics' consumer price index for urban consumers. The two indexes, which have their own purposes and uses, are constructed differently, resulting in different inflation rates. \r\n\r\nFor more information on the PCE price index, see:\r\nU.S. Bureau of Economic Analysis, Guide to the National Income and Product Accounts of the United States (NIPA) (https://www.bea.gov/national/pdf/nipaguid.pdf) \r\nU.S. Bureau of Economic Analysis, Personal Consumption Expenditures Price Index (https://www.bea.gov/data/personal-consumption-expenditures-price-index)\r\nU.S. Bureau of Economic Analysis, Prices & Inflation (https://www.bea.gov/resources/learning-center/what-to-know-prices-inflation)\r\nU.S. Bureau of Labor Statistics, Differences between the Consumer Price Index and the Personal Consumption Expenditure Price Index (https://www.bls.gov/opub/btn/archive/differences-between-the-consumer-price-index-and-the-personal-consumption-expenditures-price-index.pdf)"},
{'id': 'CPILFESL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items Less Food and Energy in U.S. City Average',
'observation_start': '1957-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:02-05',
'popularity': 84,
'group_popularity': 84,
'notes': 'The "Consumer Price Index for All Urban Consumers: All Items Less Food & Energy" is an aggregate of prices paid by urban consumers for a typical basket of goods, excluding food and energy. This measurement, known as "Core CPI," is widely used by economists because food and energy have very volatile prices. The Bureau of Labor Statistics defines and measures the official CPI, and more information can be found in the FAQ (https://www.bls.gov/cpi/questions-and-answers.htm) or in this article (https://www.bls.gov/opub/hom/pdf/cpihom.pdf).'},
{'id': 'PCECTPI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Chain-type Price Index',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:06-05',
'popularity': 53,
'group_popularity': 85,
'notes': 'BEA Account Code: DPCERG\n\nA Guide to the National Income and Product Accounts of the United States (NIPA) - (http://www.bea.gov/national/pdf/nipaguid.pdf)'},
{'id': 'CORESTICKM159SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Food and Energy',
'observation_start': '1968-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change from Year Ago',
'units_short': '% Chg. from Yr. Ago',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:01-05',
'popularity': 83,
'group_popularity': 83,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CPILFENS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items Less Food and Energy in U.S. City Average',
'observation_start': '1957-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:05-05',
'popularity': 53,
'group_popularity': 84,
'notes': 'The “Consumer Price Index for All Urban Consumers: All Items Less Food & Energy” is an aggregate of prices paid by urban consumers for a typical basket of goods, excluding food and energy. This measurement, known as “Core CPI,” is widely used by economists because food and energy have very volatile prices. The Bureau of Labor Statistics defines and measures the official CPI, and more information can be found here: https://www.bls.gov/cpi/questions-and-answers.htm or here: https://www.bls.gov/opub/hom/pdf/cpihom.pdf.'},
{'id': 'DPCERG3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Chain-type Price Index',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:11-05',
'popularity': 28,
'group_popularity': 85,
'notes': 'BEA Account Code: DPCERG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CORESTICKM158SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Food and Energy',
'observation_start': '1967-02-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change at Annual Rate',
'units_short': '% Chg. at Annual Rate',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:03-05',
'popularity': 45,
'group_popularity': 83,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary Federal Reserve Bank of Cleveland May 19, 2010: 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CORESTICKM157SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Food and Energy',
'observation_start': '1967-02-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change',
'units_short': '% Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:04-05',
'popularity': 37,
'group_popularity': 83,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CORESTICKM679SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Food and Energy',
'observation_start': '1967-04-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': '3-Month Annualized Percent Change',
'units_short': '3-Month Annualized % Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:04-05',
'popularity': 34,
'group_popularity': 83,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary Federal Reserve Bank of Cleveland May 19, 2010: 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CUUS0000SA0L1E',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items Less Food and Energy in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:06-05',
'popularity': 13,
'group_popularity': 84},
{'id': 'PCEPILFE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures Excluding Food and Energy (Chain-Type Price Index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:05-05',
'popularity': 80,
'group_popularity': 80,
'notes': "BEA Account Code: DPCCRG\r\n\r\nThe Personal Consumption Expenditures Price Index is a measure of the prices that people living in the United States, or those buying on their behalf, pay for goods and services. The change in the PCE price index is known for capturing inflation (or deflation) across a wide range of consumer expenses and reflecting changes in consumer behavior. For example, if car prices rise, car sales may decline while bicycle sales increase. \r\n\r\nThe PCE Price Index is produced by the Bureau of Economic Analysis (BEA), which revises previously published PCE data to reflect updated information or new methodology, providing consistency across decades of data that's valuable for researchers. They also offer the series as a Chain-Type index and excluding food and energy products, as above. The PCE price index less food excluding food and energy is used primarily for macroeconomic analysis and forecasting future values of the PCE price index.\r\n\r\nThe PCE Price Index is similar to the Bureau of Labor Statistics' consumer price index for urban consumers. The two indexes, which have their own purposes and uses, are constructed differently, resulting in different inflation rates.\r\n\r\nFor more information on the PCE price index, see:\r\nU.S. Bureau of Economic Analysis, Guide to the National Income and Product Accounts of the United States (NIPA) (https://www.bea.gov/national/pdf/nipaguid.pdf) \r\nU.S. Bureau of Economic Analysis, Personal Consumption Expenditures Price Index (https://www.bea.gov/data/personal-consumption-expenditures-price-index)\r\nU.S. Bureau of Economic Analysis, Prices & Inflation (https://www.bea.gov/resources/learning-center/what-to-know-prices-inflation)\r\nU.S. Bureau of Labor Statistics, Differences between the Consumer Price Index and the Personal Consumption Expenditure Price Index (https://www.bls.gov/opub/btn/archive/differences-between-the-consumer-price-index-and-the-personal-consumption-expenditures-price-index.pdf)"},
{'id': 'BPCCRO1Q156NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures Excluding Food and Energy (Chain-Type Price Index)',
'observation_start': '1960-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Percent Change from Quarter One Year Ago',
'units_short': '% Chg. from Qtr. 1 Yr. Ago',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:12-05',
'popularity': 44,
'group_popularity': 80,
'notes': 'BEA Account Code: BPCCRO\r\n\r\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPALTT01USM657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United States',
'observation_start': '1955-02-01',
'observation_end': '2024-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-15 13:49:02-05',
'popularity': 76,
'group_popularity': 78,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: USA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DPCCRG3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures excluding food and energy (chain-type price index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:10-05',
'popularity': 30,
'group_popularity': 80,
'notes': 'BEA Account Code: DPCCRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPALTT01USQ657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United States',
'observation_start': '1955-04-01',
'observation_end': '2024-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-15 13:51:02-05',
'popularity': 53,
'group_popularity': 78,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: USA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CPIMEDNS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Medical Care in U.S. City Average',
'observation_start': '1935-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:02-05',
'popularity': 71,
'group_popularity': 77},
{'id': 'CPIMEDSL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Medical Care in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:03-05',
'popularity': 66,
'group_popularity': 77},
{'id': 'DPCCRV1Q225SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures (PCE) Excluding Food and Energy (Chain-Type Price Index)',
'observation_start': '1959-04-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Percent Change from Preceding Period',
'units_short': '% Chg. from Preceding Period',
'seasonal_adjustment': 'Seasonally Adjusted Annual Rate',
'seasonal_adjustment_short': 'SAAR',
'last_updated': '2025-09-25 07:47:02-05',
'popularity': 76,
'group_popularity': 76,
'notes': 'BEA Account Code: DPCCRV\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPALTT01USA657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United States',
'observation_start': '1956-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:32:03-05',
'popularity': 37,
'group_popularity': 78,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: USA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'USACPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United States',
'observation_start': '1960-01-01',
'observation_end': '2023-12-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:13:14-06',
'popularity': 34,
'group_popularity': 78,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: USA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'USACPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United States',
'observation_start': '1960-01-01',
'observation_end': '2023-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:02:19-06',
'popularity': 27,
'group_popularity': 78,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: USA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NB000349Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Personal Consumption Expenditures',
'observation_start': '2002-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:47:39-05',
'popularity': 12,
'group_popularity': 81,
'notes': 'BEA Account Code: NB000349'},
{'id': 'CUSR0000SETA02',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Used Cars and Trucks in U.S. City Average',
'observation_start': '1953-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:02-05',
'popularity': 75,
'group_popularity': 75},
{'id': 'DPCCRV1A225NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures (PCE) Excluding Food and Energy (chain-type price index)',
'observation_start': '1930-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent Change from Preceding Period',
'units_short': '% Chg. from Preceding Period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:05-05',
'popularity': 46,
'group_popularity': 76,
'notes': 'BEA Account Code: DPCCRV\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CUUS0000SAM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Medical Care in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:04-05',
'popularity': 11,
'group_popularity': 77},
{'id': 'CUUR0000SETA02',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Used Cars and Trucks in U.S. City Average',
'observation_start': '1952-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:07-05',
'popularity': 37,
'group_popularity': 75},
{'id': 'CPIUFDSL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:04-05',
'popularity': 66,
'group_popularity': 73,
'notes': 'Handbook of Methods - (https://www.bls.gov/opub/hom/pdf/cpihom.pdf) Understanding the CPI: Frequently Asked Questions - (http://stats.bls.gov:80/cpi/cpifaq.htm)'},
{'id': 'CPIUFDNS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food in U.S. City Average',
'observation_start': '1913-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:05-05',
'popularity': 64,
'group_popularity': 73,
'notes': 'Handbook of Methods - (https://www.bls.gov/opub/hom/pdf/cpihom.pdf) Understanding the CPI: Frequently Asked Questions - (http://stats.bls.gov:80/cpi/cpifaq.htm)'},
{'id': 'CUUR0000SA0R',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Purchasing Power of the Consumer Dollar in U.S. City Average',
'observation_start': '1913-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:03-05',
'popularity': 72,
'group_popularity': 72},
{'id': 'CUUR0000SEHA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Primary Residence in U.S. City Average',
'observation_start': '1914-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:02-05',
'popularity': 68,
'group_popularity': 72},
{'id': 'CUUS0000SETA02',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Used Cars and Trucks in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:20-05',
'popularity': 10,
'group_popularity': 75},
{'id': 'CUSR0000SEHA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Primary Residence in U.S. City Average',
'observation_start': '1981-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:03-05',
'popularity': 61,
'group_popularity': 72},
{'id': 'MEDCPIM158SFRBCLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Median Consumer Price Index',
'observation_start': '1983-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change at Annual Rate',
'units_short': '% Chg. at Annual Rate',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 10:04:02-05',
'popularity': 71,
'group_popularity': 71,
'notes': "Median Consumer Price Index (CPI) is a measure of core inflation calculated the Federal Reserve Bank of Cleveland and the Ohio State University. Median CPI was created as a different way to get a 'Core CPI' measure, or a better measure of underlying inflation trends. To calculate the Median CPI, the Cleveland Fed analyzes the median price change of the goods and services published by the BLS. The median price change is the price change that's right in the middle of the long list of all of the price changes. This series excludes 49.5% of the CPI components with the highest and lowest one-month price changes from each tail of the price-change distribution resulting in a Median CPI Inflation Estimate.\n\nAccording to research from the Cleveland Fed, the Median CPI provides a better signal of the inflation trend than either the all-items CPI or the CPI excluding food and energy. According to newer research done at the Cleveland Fed, the Median CPI is even better at PCE inflation in the near and longer term than the core PCE.\n\nFor further information, visit The Federal Reserve Bank of Cleveland (https://www.clevelandfed.org/indicators-and-data/median-cpi#background)."},
{'id': 'CUSR0000SAF11',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food at Home in U.S. City Average',
'observation_start': '1952-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:04-05',
'popularity': 70,
'group_popularity': 71},
{'id': 'CUUS0000SAF1',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:05-05',
'popularity': 7,
'group_popularity': 73},
{'id': 'CUUR0000SAF11',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food at Home in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:08-05',
'popularity': 43,
'group_popularity': 71},
{'id': 'MEDCPIM159SFRBCLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Median Consumer Price Index',
'observation_start': '1983-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change from Year Ago',
'units_short': '% Chg. from Yr. Ago',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 10:04:03-05',
'popularity': 32,
'group_popularity': 71,
'notes': "Median Consumer Price Index (CPI) is a measure of core inflation calculated the Federal Reserve Bank of Cleveland and the Ohio State University. Median CPI was created as a different way to get a 'Core CPI' measure, or a better measure of underlying inflation trends. To calculate the Median CPI, the Cleveland Fed analyzes the median price change of the goods and services published by the BLS. The median price change is the price change that's right in the middle of the long list of all of the price changes. This series excludes 49.5% of the CPI components with the highest and lowest one-month price changes from each tail of the price-change distribution resulting in a Median CPI Inflation Estimate.\n\nAccording to research from the Cleveland Fed, the Median CPI provides a better signal of the inflation trend than either the all-items CPI or the CPI excluding food and energy. According to newer research done at the Cleveland Fed, the Median CPI is even better at PCE inflation in the near and longer term than the core PCE.\n\nFor further information, visit The Federal Reserve Bank of Cleveland (https://www.clevelandfed.org/indicators-and-data/median-cpi#background)."},
{'id': 'CUUS0000SEHA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Primary Residence in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:21-05',
'popularity': 9,
'group_popularity': 72},
{'id': 'MEDCPIM094SFRBCLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Median Consumer Price Index',
'observation_start': '1982-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 10:04:03-05',
'popularity': 24,
'group_popularity': 71,
'notes': "Median Consumer Price Index (CPI) is a measure of core inflation calculated the Federal Reserve Bank of Cleveland and the Ohio State University. Median CPI was created as a different way to get a 'Core CPI' measure, or a better measure of underlying inflation trends. To calculate the Median CPI, the Cleveland Fed analyzes the median price change of the goods and services published by the BLS. The median price change is the price change that's right in the middle of the long list of all of the price changes. This series excludes 49.5% of the CPI components with the highest and lowest one-month price changes from each tail of the price-change distribution resulting in a Median CPI Inflation Estimate.\n\nAccording to research from the Cleveland Fed, the Median CPI provides a better signal of the inflation trend than either the all-items CPI or the CPI excluding food and energy. According to newer research done at the Cleveland Fed, the Median CPI is even better at PCE inflation in the near and longer term than the core PCE.\n\nFor further information, visit The Federal Reserve Bank of Cleveland (https://www.clevelandfed.org/indicators-and-data/median-cpi#background)."},
{'id': 'MEDCPIM157SFRBCLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Median Consumer Price Index',
'observation_start': '1983-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change',
'units_short': '% Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 10:04:03-05',
'popularity': 18,
'group_popularity': 71,
'notes': "Median Consumer Price Index (CPI) is a measure of core inflation calculated the Federal Reserve Bank of Cleveland and the Ohio State University. Median CPI was created as a different way to get a 'Core CPI' measure, or a better measure of underlying inflation trends. To calculate the Median CPI, the Cleveland Fed analyzes the median price change of the goods and services published by the BLS. The median price change is the price change that's right in the middle of the long list of all of the price changes. This series excludes 49.5% of the CPI components with the highest and lowest one-month price changes from each tail of the price-change distribution resulting in a Median CPI Inflation Estimate.\n\nAccording to research from the Cleveland Fed, the Median CPI provides a better signal of the inflation trend than either the all-items CPI or the CPI excluding food and energy. According to newer research done at the Cleveland Fed, the Median CPI is even better at PCE inflation in the near and longer term than the core PCE.\n\nFor further information, visit The Federal Reserve Bank of Cleveland (https://www.clevelandfed.org/indicators-and-data/median-cpi#background)."},
{'id': 'CUUS0000SAF11',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food at Home in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:05-05',
'popularity': 5,
'group_popularity': 71},
{'id': 'CUUR0000SETA01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: New Vehicles in U.S. City Average',
'observation_start': '1947-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:03-05',
'popularity': 62,
'group_popularity': 68},
{'id': 'USACPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '2010-01-01',
'observation_end': '2024-12-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:53:02-06',
'popularity': 58,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SETA01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: New Vehicles in U.S. City Average',
'observation_start': '1953-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:04-05',
'popularity': 58,
'group_popularity': 68},
{'id': 'USACPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '1955-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:16:57-05',
'popularity': 45,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01USM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '1956-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:35-05',
'popularity': 39,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01USQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '1955-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-04-15 14:17:57-05',
'popularity': 37,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01USQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '1956-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:17:57-05',
'popularity': 27,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01USM661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '1955-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-05-15 14:17:35-05',
'popularity': 25,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01USA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '1955-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-02-17 13:56:02-06',
'popularity': 24,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'USACPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '1955-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:16:42-05',
'popularity': 16,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01USM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '2002-12-01',
'observation_end': '2024-12-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:05:16-06',
'popularity': 12,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01USA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '1956-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:02-06',
'popularity': 11,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'USACPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '1955-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:02-06',
'popularity': 10,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'USACPIHICMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '2001-12-01',
'observation_end': '2024-12-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:04:31-06',
'popularity': 8,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUS0000SETA01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: New Vehicles in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:20-05',
'popularity': 4,
'group_popularity': 68},
{'id': 'USACPIHICAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '2002-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:07:27-06',
'popularity': 2,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01USA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United States',
'observation_start': '2002-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:08:00-06',
'popularity': 2,
'group_popularity': 68,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPIFABSL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food and Beverages in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:07-05',
'popularity': 59,
'group_popularity': 62},
{'id': 'CUSR0000SEHF01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Electricity in U.S. City Average',
'observation_start': '1952-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:04-05',
'popularity': 60,
'group_popularity': 61},
{'id': 'CPIAPPSL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Apparel in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:05-05',
'popularity': 60,
'group_popularity': 61},
{'id': 'CUSR0000SAH1',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Shelter in U.S. City Average',
'observation_start': '1953-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:03-05',
'popularity': 60,
'group_popularity': 61},
{'id': 'CPIFABNS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food and Beverages in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:08-05',
'popularity': 35,
'group_popularity': 62},
{'id': 'CP0000EZ19M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All-Items HICP for Euro Area (19 Countries)',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:01-05',
'popularity': 60,
'group_popularity': 60,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CWUR0000SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Wage Earners and Clerical Workers: All Items in U.S. City Average',
'observation_start': '1913-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:04-05',
'popularity': 59,
'group_popularity': 60},
{'id': 'CUUR0000SEHF01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Electricity in U.S. City Average',
'observation_start': '1913-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:05-05',
'popularity': 30,
'group_popularity': 61},
{'id': 'CUUR0000SAH1',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Shelter in U.S. City Average',
'observation_start': '1952-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:05-05',
'popularity': 23,
'group_popularity': 61},
{'id': 'CUUS0000SAF',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food and Beverages in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:05-05',
'popularity': 2,
'group_popularity': 62},
{'id': 'CPIENGSL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Energy in U.S. City Average',
'observation_start': '1957-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:05-05',
'popularity': 57,
'group_popularity': 59,
'notes': 'Handbook of Methods - (https://www.bls.gov/opub/hom/pdf/cpihom.pdf) Understanding the CPI: Frequently Asked Questions - (http://stats.bls.gov:80/cpi/cpifaq.htm)'},
{'id': 'CPIAPPNS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Apparel in U.S. City Average',
'observation_start': '1914-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:15-05',
'popularity': 17,
'group_popularity': 61},
{'id': 'CWSR0000SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Wage Earners and Clerical Workers: All Items in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:11-05',
'popularity': 35,
'group_popularity': 60},
{'id': 'CUSR0000SEFV',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food Away from Home in U.S. City Average',
'observation_start': '1953-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:06-05',
'popularity': 53,
'group_popularity': 59},
{'id': 'CUUR0000SEFV',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food Away from Home in U.S. City Average',
'observation_start': '1953-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:07-05',
'popularity': 48,
'group_popularity': 59},
{'id': 'CUUS0000SEHF01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Electricity in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:20-05',
'popularity': 7,
'group_popularity': 61},
{'id': 'CUUS0000SAA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Apparel in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:06-05',
'popularity': 3,
'group_popularity': 61},
{'id': 'CUUS0000SAH1',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Shelter in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:04-05',
'popularity': 3,
'group_popularity': 61},
{'id': 'CPIHOSNS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Housing in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:04-05',
'popularity': 50,
'group_popularity': 58},
{'id': 'CPIHOSSL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Housing in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:04-05',
'popularity': 48,
'group_popularity': 58},
{'id': 'CPIENGNS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Energy in U.S. City Average',
'observation_start': '1957-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:11-05',
'popularity': 27,
'group_popularity': 59,
'notes': 'Handbook of Methods - (https://www.bls.gov/opub/hom/pdf/cpihom.pdf) Understanding the CPI: Frequently Asked Questions - (http://stats.bls.gov:80/cpi/cpifaq.htm)'},
{'id': 'CUSR0000SETG01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Airline Fares in U.S. City Average',
'observation_start': '1989-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:04-05',
'popularity': 56,
'group_popularity': 57},
{'id': 'CUUS0000SA0E',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Energy in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:06-05',
'popularity': 4,
'group_popularity': 59},
{'id': 'CUUS0000SEFV',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Food Away from Home in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:21-05',
'popularity': 3,
'group_popularity': 59},
{'id': 'CUUR0000SETG01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Airline Fares in U.S. City Average',
'observation_start': '1963-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:09-05',
'popularity': 31,
'group_popularity': 57},
{'id': 'CHNCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for China',
'observation_start': '1993-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:51-05',
'popularity': 49,
'group_popularity': 56,
'notes': 'OECD Data Filters: \r\nREF_AREA: CHN\r\nMEASURE: CPI\r\nUNIT_MEASURE: IX\r\nMETHODOLOGY: N\r\nEXPENDITURE: _T\r\nADJUSTMENT: N\r\nTRANSFORMATION: _Z\r\nFREQ: M\r\n\r\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'GBRCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1955-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:54-05',
'popularity': 47,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUS0000SAH',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Housing in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:04-05',
'popularity': 1,
'group_popularity': 58},
{'id': 'CPALTT01CNM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for China',
'observation_start': '1987-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:48-05',
'popularity': 37,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: CHN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SETD',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Motor Vehicle Maintenance and Repair in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:05-05',
'popularity': 53,
'group_popularity': 55},
{'id': 'STICKCPIM157SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index',
'observation_start': '1967-02-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change',
'units_short': '% Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:03-05',
'popularity': 51,
'group_popularity': 55,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'GBRCPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '2010-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:57-05',
'popularity': 27,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'GBRCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1955-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:33-05',
'popularity': 18,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CHNCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for China',
'observation_start': '1993-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:19:08-05',
'popularity': 16,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: CHN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01GBM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1956-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:48-05',
'popularity': 16,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'FPCPITOTLZGJPN',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Japan',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:02-05',
'popularity': 54,
'group_popularity': 54,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CPHPTT01GBA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1996-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:22:47-06',
'popularity': 15,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'GBRCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1955-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:03-06',
'popularity': 13,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SETB01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Gasoline (All Types) in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:05-05',
'popularity': 51,
'group_popularity': 54},
{'id': 'CPALTT01CNQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for China',
'observation_start': '1994-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:19:05-05',
'popularity': 12,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: CHN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01GBA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1956-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:05-06',
'popularity': 11,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'STICKCPIM159SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index',
'observation_start': '1968-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change from Year Ago',
'units_short': '% Chg. from Yr. Ago',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:05-05',
'popularity': 30,
'group_popularity': 55,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CUUR0000SETD',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Motor Vehicle Maintenance and Repair in U.S. City Average',
'observation_start': '1947-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:11-05',
'popularity': 29,
'group_popularity': 55},
{'id': 'CPHPTT01GBM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1989-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:46-05',
'popularity': 9,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01GBQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1956-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:36-05',
'popularity': 9,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CHNCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for China',
'observation_start': '1993-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-01-15 14:00:05-06',
'popularity': 7,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: CHN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'GBRCPIHICMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1988-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:54-05',
'popularity': 6,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01CNA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for China',
'observation_start': '1985-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-03-17 14:32:02-05',
'popularity': 5,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: CHN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01GBQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1989-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:28-05',
'popularity': 5,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'GBRCPIHICAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for United Kingdom',
'observation_start': '1996-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:22:46-06',
'popularity': 3,
'group_popularity': 56,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'STICKCPIM158SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index',
'observation_start': '1967-02-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change at Annual Rate',
'units_short': '% Chg. at Annual Rate',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:06-05',
'popularity': 15,
'group_popularity': 55,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'FPCPITOTLZGGBR',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for the United Kingdom',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:03-05',
'popularity': 53,
'group_popularity': 53,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CUSR0000SEHC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': "Consumer Price Index for All Urban Consumers: Owners' Equivalent Rent of Residences in U.S. City Average",
'observation_start': '1983-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:04-05',
'popularity': 52,
'group_popularity': 53},
{'id': 'CUSR0000SEFP01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Coffee in U.S. City Average',
'observation_start': '2003-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:08-05',
'popularity': 51,
'group_popularity': 53},
{'id': 'STICKCPIM679SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index',
'observation_start': '1967-04-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': '3-Month Annualized Percent Change',
'units_short': '3-Month Annualized % Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:06-05',
'popularity': 11,
'group_popularity': 55,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CUUR0000SA0L2',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items Less Shelter in U.S. City Average',
'observation_start': '1935-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:06-05',
'popularity': 49,
'group_popularity': 53},
{'id': 'CUUR0000SETB01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Gasoline (All Types) in U.S. City Average',
'observation_start': '1935-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:10-05',
'popularity': 29,
'group_popularity': 54},
{'id': 'NB000346Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Personal Consumption Expenditures: Durable Goods',
'observation_start': '2002-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:49:07-05',
'popularity': 5,
'group_popularity': 60,
'notes': 'BEA Account Code: NB000346'},
{'id': 'CUUS0000SETD',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Motor Vehicle Maintenance and Repair in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:20-05',
'popularity': 8,
'group_popularity': 55},
{'id': 'CUSR0000SA0L2',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items Less Shelter in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:08-05',
'popularity': 32,
'group_popularity': 53},
{'id': 'CUUR0000SEFP01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Coffee in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:15-05',
'popularity': 25,
'group_popularity': 53},
{'id': 'AUSCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Australia',
'observation_start': '1948-07-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:42-05',
'popularity': 44,
'group_popularity': 52,
'notes': 'OECD Data Filters: \nREF_AREA: AUS\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUS0000SETB01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Gasoline (All Types) in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:20-05',
'popularity': 3,
'group_popularity': 54},
{'id': 'CUUR0000SEHC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': "Consumer Price Index for All Urban Consumers: Owners' Equivalent Rent of Residences in U.S. City Average",
'observation_start': '1982-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:07-05',
'popularity': 16,
'group_popularity': 53},
{'id': 'CPITRNSL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Transportation in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:08-05',
'popularity': 50,
'group_popularity': 51},
{'id': 'CUSR0000SASLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Services Less Energy Services in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:06-05',
'popularity': 49,
'group_popularity': 51},
{'id': 'INDCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for India',
'observation_start': '1957-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:50-05',
'popularity': 44,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: IND\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01AUQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Australia',
'observation_start': '1949-07-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:37-05',
'popularity': 22,
'group_popularity': 52,
'notes': 'OECD Data Filters: \nREF_AREA: AUS\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'JPNCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '1955-01-01',
'observation_end': '2021-06-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-05-15 14:00:04-05',
'popularity': 41,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUS0000SEHC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': "Consumer Price Index for All Urban Consumers: Owners' Equivalent Rent of Residences in U.S. City Average",
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:21-05',
'popularity': 2,
'group_popularity': 53},
{'id': 'CUUS0000SA0L2',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items Less Shelter in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:06-05',
'popularity': 1,
'group_popularity': 53},
{'id': 'FPCPITOTLZGDEU',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Germany',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:03-05',
'popularity': 51,
'group_popularity': 50,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CPALTT01DEM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1956-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:21:07-05',
'popularity': 31,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'JPNCPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '2011-01-01',
'observation_end': '2021-06-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-05-15 14:00:04-05',
'popularity': 30,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DEUCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1955-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:20:53-05',
'popularity': 30,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01INM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for India',
'observation_start': '1958-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:53-05',
'popularity': 27,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: IND\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01AUA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Australia',
'observation_start': '1950-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:09-06',
'popularity': 7,
'group_popularity': 52,
'notes': 'OECD Data Filters: \nREF_AREA: AUS\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SEHG',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Water and Sewer and Trash Collection Services in U.S. City Average',
'observation_start': '1997-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1997=100',
'units_short': 'Index Dec 1997=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:04-05',
'popularity': 45,
'group_popularity': 50},
{'id': 'AUSCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Australia',
'observation_start': '1949-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:07-06',
'popularity': 5,
'group_popularity': 52,
'notes': 'OECD Data Filters: \nREF_AREA: AUS\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'AUSCPALTT01IXOBSAQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Australia',
'observation_start': '1986-10-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-05-15 14:17:42-05',
'popularity': 2,
'group_popularity': 52,
'notes': 'OECD Data Filters: \nREF_AREA: AUS\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUR0000SASLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Services Less Energy Services in U.S. City Average',
'observation_start': '1957-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:12-05',
'popularity': 20,
'group_popularity': 51},
{'id': 'INDCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for India',
'observation_start': '1957-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:33-05',
'popularity': 16,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: IND\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DEUCPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '2010-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:20:55-05',
'popularity': 15,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01JPM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '1956-01-01',
'observation_end': '2021-06-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-05-15 14:00:06-05',
'popularity': 14,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01JPM661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '1985-01-01',
'observation_end': '2021-06-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-05-15 14:00:09-05',
'popularity': 13,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01DEA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1956-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:05-06',
'popularity': 12,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DEUCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1955-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:04-06',
'popularity': 12,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'JPNCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '1955-01-01',
'observation_end': '2021-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-05-15 13:58:04-05',
'popularity': 11,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DEUCPALTT01IXOBSAM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1948-06-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-04-15 14:20:55-05',
'popularity': 11,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPITRNNS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Transportation in U.S. City Average',
'observation_start': '1935-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:19-05',
'popularity': 10,
'group_popularity': 51},
{'id': 'CUUR0000SEHG',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Water and Sewer and Trash Collection Services in U.S. City Average',
'observation_start': '1997-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1997=100',
'units_short': 'Index Dec 1997=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:04-05',
'popularity': 29,
'group_popularity': 50},
{'id': 'CUSR0000SAD',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Durables in U.S. City Average',
'observation_start': '1956-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:06-05',
'popularity': 48,
'group_popularity': 49},
{'id': 'CPALTT01JPQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '1985-01-01',
'observation_end': '2021-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-05-15 13:58:08-05',
'popularity': 9,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01DEA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1996-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:08:00-06',
'popularity': 9,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'IA001260M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Services Excluding Energy and Housing (Chain-Type Price Index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:13-05',
'popularity': 47,
'group_popularity': 49,
'notes': 'BEA Account Code: IA001260\n\nFor more information about this series, please see please visit the Guide to the National Income and Product Accounts of the United States (NIPA) (https://www.bea.gov/resources/methodologies/nipa-handbook).'},
{'id': 'CPALTT01INQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for India',
'observation_start': '1958-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:36-05',
'popularity': 8,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: IND\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'INDCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for India',
'observation_start': '1957-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-03-17 14:32:03-05',
'popularity': 8,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: IND\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DEUCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1955-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:18:52-05',
'popularity': 8,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01DEM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1997-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:46-05',
'popularity': 8,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SAM2',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Medical Care Services in U.S. City Average',
'observation_start': '1956-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:04-05',
'popularity': 45,
'group_popularity': 49},
{'id': 'CPALTT01JPQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '1956-01-01',
'observation_end': '2021-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-05-15 13:58:10-05',
'popularity': 6,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01DEQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1956-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:19:05-05',
'popularity': 6,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01INA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for India',
'observation_start': '1958-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-03-17 14:32:03-05',
'popularity': 4,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: IND\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'JPNCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '1955-01-01',
'observation_end': '2020-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-05-15 14:02:08-05',
'popularity': 4,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DEUCPIHICMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1995-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:37-05',
'popularity': 3,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01JPA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '1956-01-01',
'observation_end': '2020-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-05-15 14:02:33-05',
'popularity': 2,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01JPA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Japan',
'observation_start': '1985-01-01',
'observation_end': '2020-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-05-15 14:02:22-05',
'popularity': 2,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: JPN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DEUCPALTT01IXOBSAQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1948-07-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-04-15 14:18:52-05',
'popularity': 2,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUS0000SASLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Services Less Energy Services in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:03-05',
'popularity': 1,
'group_popularity': 51},
{'id': 'CUUS0000SAT',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Transportation in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:03-05',
'popularity': 1,
'group_popularity': 51},
{'id': 'DEUCPIHICAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Germany',
'observation_start': '1995-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:08:12-06',
'popularity': 1,
'group_popularity': 51,
'notes': 'OECD Data Filters: \nREF_AREA: DEU\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUR0000SAM2',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Medical Care Services in U.S. City Average',
'observation_start': '1935-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:06-05',
'popularity': 27,
'group_popularity': 49},
{'id': 'CUURA101SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in New York-Newark-Jersey City, NY-NJ-PA (CBSA)',
'observation_start': '1914-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:04-05',
'popularity': 46,
'group_popularity': 48},
{'id': 'CUSR0000SAF112',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Meats, Poultry, Fish, and Eggs in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:07-05',
'popularity': 46,
'group_popularity': 48},
{'id': 'CRESTKCPIXSLTRM159SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Food, Energy, and Shelter',
'observation_start': '1968-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change from Year Ago',
'units_short': '% Chg. from Yr. Ago',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:03-05',
'popularity': 45,
'group_popularity': 48,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CUSR0000SACL1E',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Commodities Less Food and Energy Commodities in U.S. City Average',
'observation_start': '1957-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:07-05',
'popularity': 45,
'group_popularity': 48},
{'id': 'CUUR0000SAD',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Durables in U.S. City Average',
'observation_start': '1935-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:17-05',
'popularity': 15,
'group_popularity': 49},
{'id': 'IA001260Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Services Excluding Energy and Housing (Chain-Type Price Index)',
'observation_start': '1959-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:46-05',
'popularity': 10,
'group_popularity': 49,
'notes': 'BEA Account Code: IA001260\n\nFor more information about this series, please see please visit the GDP release page (https://www.bea.gov/data/gdp/gross-domestic-product).'},
{'id': 'PC001260A',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Services Excluding Energy and Housing (Chain-Type Price Index)',
'observation_start': '1930-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent Change from Preceding Period',
'units_short': '% Chg. from Preceding Period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:35-05',
'popularity': 9,
'group_popularity': 49,
'notes': 'BEA Account Code: PC001260\n\nFor more information about this series, please see please visit the GDP release page (https://www.bea.gov/data/gdp/gross-domestic-product).'},
{'id': 'NB000347Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Personal Consumption Expenditures: Goods',
'observation_start': '2002-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:52:00-05',
'popularity': 1,
'group_popularity': 54,
'notes': 'BEA Account Code: NB000347'},
{'id': 'PC001260Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Services Excluding Energy and Housing (Chain-Type Price Index)',
'observation_start': '1959-04-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Percent Change from Preceding Period',
'units_short': '% Chg. from Preceding Period',
'seasonal_adjustment': 'Seasonally Adjusted Annual Rate',
'seasonal_adjustment_short': 'SAAR',
'last_updated': '2025-09-25 07:47:45-05',
'popularity': 7,
'group_popularity': 49,
'notes': 'BEA Account Code: PC001260\n\nFor more information about this series, please see please visit the GDP release page (https://www.bea.gov/data/gdp/gross-domestic-product).'},
{'id': 'YC001177Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Services Excluding Energy and Housing (Chain-Type Price Index)',
'observation_start': '1960-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Percent Change from Quarter One Year Ago',
'units_short': '% Chg. from Qtr. 1 Yr. Ago',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:52-05',
'popularity': 5,
'group_popularity': 49,
'notes': 'BEA Account Code: YC001177\n\nFor more information about this series, please see please visit the GDP release page (https://www.bea.gov/data/gdp/gross-domestic-product).'},
{'id': 'CUUR0000SACL1E',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Commodities Less Food and Energy Commodities in U.S. City Average',
'observation_start': '1957-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:11-05',
'popularity': 22,
'group_popularity': 48},
{'id': 'CUURA422SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in San Francisco-Oakland-Hayward, CA (CBSA)',
'observation_start': '1914-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:05-05',
'popularity': 41,
'group_popularity': 47},
{'id': 'IA001260A',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Services Excluding Energy and Housing (Chain-Type Price Index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:49:56-05',
'popularity': 2,
'group_popularity': 49,
'notes': 'BEA Account Code: IA001260\n\nFor more information about this series, please see please visit the GDP release page (https://www.bea.gov/data/gdp/gross-domestic-product).'},
{'id': 'CUUS0000SAM2',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Medical Care Services in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:04-05',
'popularity': 2,
'group_popularity': 49},
{'id': 'CUUS0000SAD',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Durables in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:06-05',
'popularity': 2,
'group_popularity': 49},
{'id': 'CRESTKCPIXSLTRM679SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Food, Energy, and Shelter',
'observation_start': '1967-04-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': '3-Month Annualized Percent Change',
'units_short': '3-Month Annualized % Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:05-05',
'popularity': 19,
'group_popularity': 48,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CUUSA101SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in New York-Newark-Jersey City, NY-NJ-PA (CBSA)',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:41:02-05',
'popularity': 17,
'group_popularity': 48},
{'id': 'CUUR0000SAF112',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Meats, Poultry, Fish, and Eggs in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:15-05',
'popularity': 15,
'group_popularity': 48},
{'id': 'CUUSA422SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in San Francisco-Oakland-Hayward, CA (CBSA)',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:58-05',
'popularity': 33,
'group_popularity': 47},
{'id': 'CRESTKCPIXSLTRM157SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Food, Energy, and Shelter',
'observation_start': '1967-02-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change',
'units_short': '% Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:07-05',
'popularity': 12,
'group_popularity': 48,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'FPCPITOTLZGCAN',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Canada',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:03-05',
'popularity': 46,
'group_popularity': 46,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CRESTKCPIXSLTRM158SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Food, Energy, and Shelter',
'observation_start': '1967-02-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change at Annual Rate',
'units_short': '% Chg. at Annual Rate',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:07-05',
'popularity': 7,
'group_popularity': 48,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CUUS0000SAF112',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Meats, Poultry, Fish, and Eggs in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:05-05',
'popularity': 7,
'group_popularity': 48},
{'id': 'CUUR0000SETC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Motor Vehicle Parts and Equipment in U.S. City Average',
'observation_start': '1977-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:06-05',
'popularity': 41,
'group_popularity': 46},
{'id': 'ARGCPALTT01GPM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Argentina',
'observation_start': '2017-01-01',
'observation_end': '2024-02-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:31:05-05',
'popularity': 41,
'group_popularity': 46,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: ARG\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUUS0000SACL1E',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Commodities Less Food and Energy Commodities in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:06-05',
'popularity': 1,
'group_popularity': 48},
{'id': 'CPALTT01CNM657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for China',
'observation_start': '1993-02-01',
'observation_end': '2024-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-15 13:51:03-05',
'popularity': 37,
'group_popularity': 46,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: CHN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUSR0000SETC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Motor Vehicle Parts and Equipment in U.S. City Average',
'observation_start': '1991-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:08-05',
'popularity': 29,
'group_popularity': 46},
{'id': 'SUUR0000SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Chained Consumer Price Index for All Urban Consumers: All Items in U.S. City Average',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1999=100',
'units_short': 'Index Dec 1999=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:06-05',
'popularity': 46,
'group_popularity': 45},
{'id': 'ARGCPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Argentina',
'observation_start': '2016-12-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:29:04-06',
'popularity': 19,
'group_popularity': 46,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: ARG\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CHNCPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for China',
'observation_start': '1993-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:25:12-06',
'popularity': 18,
'group_popularity': 46,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: CHN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CPALTT01CNQ657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for China',
'observation_start': '1993-04-01',
'observation_end': '2024-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-15 13:52:02-05',
'popularity': 15,
'group_popularity': 46,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: CHN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'ARGCPALTT01GPQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Argentina',
'observation_start': '2017-04-01',
'observation_end': '2023-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:32:12-05',
'popularity': 12,
'group_popularity': 46,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: ARG\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NB000348Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Personal Consumption Expenditures: Nondurable Goods',
'observation_start': '2002-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:52:00-05',
'popularity': 1,
'group_popularity': 51,
'notes': 'BEA Account Code: NB000348'},
{'id': 'CPALTT01CNA657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for China',
'observation_start': '1994-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:34:32-05',
'popularity': 7,
'group_popularity': 46,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: CHN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'ARGCPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Argentina',
'observation_start': '2017-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 12:00:12-06',
'popularity': 7,
'group_popularity': 46,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: ARG\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'FPCPITOTLZGIND',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for India',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:03-05',
'popularity': 44,
'group_popularity': 44,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'FPCPITOTLZGCHN',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for China',
'observation_start': '1987-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:03-05',
'popularity': 44,
'group_popularity': 44,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CHNCPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for China',
'observation_start': '1993-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 11:57:06-06',
'popularity': 5,
'group_popularity': 46,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: CHN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUSR0000SAF113',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Fruits and Vegetables in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:08-05',
'popularity': 43,
'group_popularity': 44},
{'id': 'DPCERD3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures (implicit price deflator)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:11-05',
'popularity': 47,
'group_popularity': 48,
'notes': 'BEA Account Code: DPCERD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPALTT01GBM657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United Kingdom',
'observation_start': '1955-02-01',
'observation_end': '2024-02-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:30:28-05',
'popularity': 35,
'group_popularity': 44,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: GBR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'FPCPITOTLZGWLD',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for the World',
'observation_start': '1981-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:37-05',
'popularity': 43,
'group_popularity': 43,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'FPCPITOTLZGFRA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for France',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:04-05',
'popularity': 43,
'group_popularity': 43,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CPALTT01GBQ657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United Kingdom',
'observation_start': '1955-04-01',
'observation_end': '2023-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:32:04-05',
'popularity': 21,
'group_popularity': 44,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: GBR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'GBRCPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United Kingdom',
'observation_start': '1960-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:22:13-06',
'popularity': 19,
'group_popularity': 44,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: GBR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DPCERD3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures (implicit price deflator)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:21-05',
'popularity': 17,
'group_popularity': 48,
'notes': 'BEA Account Code: DPCERD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CUUR0000SAF113',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Fruits and Vegetables in U.S. City Average',
'observation_start': '1935-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:21-05',
'popularity': 9,
'group_popularity': 44},
{'id': 'CANCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Canada',
'observation_start': '1914-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:20:19-05',
'popularity': 27,
'group_popularity': 43,
'notes': 'OECD Data Filters: \nREF_AREA: CAN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01GBA657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United Kingdom',
'observation_start': '1956-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:32:22-05',
'popularity': 6,
'group_popularity': 44,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: GBR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUURA101SEHA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Primary Residence in New York-Newark-Jersey City, NY-NJ-PA (CBSA)',
'observation_start': '1914-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:07-05',
'popularity': 42,
'group_popularity': 42},
{'id': 'FPCPITOTLZGTUR',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Turkey',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:04-05',
'popularity': 42,
'group_popularity': 42,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'GBRCPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for United Kingdom',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 11:53:30-06',
'popularity': 3,
'group_popularity': 44,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: GBR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUUS0000SAF113',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Fruits and Vegetables in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:05-05',
'popularity': 1,
'group_popularity': 44},
{'id': 'CPALTT01CAM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Canada',
'observation_start': '1915-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:20:11-05',
'popularity': 20,
'group_popularity': 43,
'notes': 'OECD Data Filters: \nREF_AREA: CAN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUR0000SASL2RS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Services Less Rent of Shelter in U.S. City Average',
'observation_start': '1982-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:10-05',
'popularity': 34,
'group_popularity': 42},
{'id': 'CPALTT01CAQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Canada',
'observation_start': '1915-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:37-05',
'popularity': 13,
'group_popularity': 43,
'notes': 'OECD Data Filters: \nREF_AREA: CAN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01INM657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for India',
'observation_start': '1957-02-01',
'observation_end': '2024-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:30:23-05',
'popularity': 32,
'group_popularity': 42,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: IND\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CANCPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Canada',
'observation_start': '2015-12-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:20:20-05',
'popularity': 12,
'group_popularity': 43,
'notes': 'OECD Data Filters: \nREF_AREA: CAN\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SASL2RS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Services Less Rent of Shelter in U.S. City Average',
'observation_start': '1985-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:10-05',
'popularity': 30,
'group_popularity': 42},
{'id': 'CANCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Canada',
'observation_start': '1914-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:37-05',
'popularity': 5,
'group_popularity': 43,
'notes': 'OECD Data Filters: \nREF_AREA: CAN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CANCPALTT01IXOBSAM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Canada',
'observation_start': '1992-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-05-15 14:20:20-05',
'popularity': 4,
'group_popularity': 43,
'notes': 'OECD Data Filters: \nREF_AREA: CAN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01CAA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Canada',
'observation_start': '1915-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:09-06',
'popularity': 4,
'group_popularity': 43,
'notes': 'OECD Data Filters: \nREF_AREA: CAN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CANCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Canada',
'observation_start': '1914-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:03-06',
'popularity': 4,
'group_popularity': 43,
'notes': 'OECD Data Filters: \nREF_AREA: CAN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'INDCPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for India',
'observation_start': '1960-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:21:11-06',
'popularity': 22,
'group_popularity': 42,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: IND\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CANCPALTT01IXOBSAQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Canada',
'observation_start': '1992-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-05-15 14:17:38-05',
'popularity': 2,
'group_popularity': 43,
'notes': 'OECD Data Filters: \nREF_AREA: CAN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SAS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Services in U.S. City Average',
'observation_start': '1956-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:08-05',
'popularity': 38,
'group_popularity': 41},
{'id': 'CPHPTT01EZM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: Harmonised Prices: All Items: Total for the Euro Area (19 Countries)',
'observation_start': '1991-01-01',
'observation_end': '2023-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:15:05-05',
'popularity': 37,
'group_popularity': 41,
'notes': 'OECD descriptor ID: CPHPTT01\nOECD unit ID: GY\nOECD country ID: EA17\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database),http://dx.doi.org/10.1787/data-00052-en (Accessed on date)\nCopyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CPALTT01INQ657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for India',
'observation_start': '1957-04-01',
'observation_end': '2023-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:32:12-05',
'popularity': 10,
'group_popularity': 42,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: IND\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CPALTT01INA657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for India',
'observation_start': '1958-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:32:22-05',
'popularity': 8,
'group_popularity': 42,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: IND\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'FRACPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1955-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:01-05',
'popularity': 27,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'ITACPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1955-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:41-05',
'popularity': 25,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'INDCPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for India',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 11:51:22-06',
'popularity': 5,
'group_popularity': 42,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: IND\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'ITACPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1955-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:16-05',
'popularity': 23,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUSA101SEHA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Primary Residence in New York-Newark-Jersey City, NY-NJ-PA (CBSA)',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:39:20-05',
'popularity': 3,
'group_popularity': 42},
{'id': 'CUUS0000SASL2RS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Services Less Rent of Shelter in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:03-05',
'popularity': 2,
'group_popularity': 42},
{'id': 'DGDSRG3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Goods (chain-type price index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:16-05',
'popularity': 39,
'group_popularity': 40,
'notes': 'BEA Account Code: DGDSRG\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSERRG3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Services (chain-type price index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:15-05',
'popularity': 39,
'group_popularity': 40,
'notes': 'BEA Account Code: DSERRG\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CUSR0000SEEE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Information Technology, Hardware and Services in U.S. City Average',
'observation_start': '2006-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1988=100',
'units_short': 'Index Dec 1988=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:09-05',
'popularity': 37,
'group_popularity': 40},
{'id': 'CUUR0000SAS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Services in U.S. City Average',
'observation_start': '1935-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:16-05',
'popularity': 16,
'group_popularity': 41},
{'id': 'CPALTT01FRA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1956-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:07-06',
'popularity': 15,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUURA423SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Seattle-Tacoma-Bellevue WA (CBSA)',
'observation_start': '1914-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:06-05',
'popularity': 34,
'group_popularity': 40},
{'id': 'CUSR0000SAH3',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Household Furnishings and Operations in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:05-05',
'popularity': 32,
'group_popularity': 40},
{'id': 'ITACPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '2010-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:13-05',
'popularity': 11,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01JPM657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Japan',
'observation_start': '1955-02-01',
'observation_end': '2021-06-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:31:51-05',
'popularity': 30,
'group_popularity': 40,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: JPN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CPALTT01BRM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Brazil',
'observation_start': '1980-12-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:20:11-05',
'popularity': 30,
'group_popularity': 40,
'notes': 'OECD Data Filters: \nREF_AREA: BRA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'FRACPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1955-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:23-05',
'popularity': 10,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01EZM661N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: Harmonised Prices: All Items: Total for the Euro Area (19 Countries)',
'observation_start': '1990-01-01',
'observation_end': '2023-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:15:11-05',
'popularity': 9,
'group_popularity': 41,
'notes': 'OECD descriptor ID: CPHPTT01\nOECD unit ID: IXOB\nOECD country ID: EA17\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database),http://dx.doi.org/10.1787/data-00052-en (Accessed on date)\nCopyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CPHPTT01FRA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1996-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:22:47-06',
'popularity': 9,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01FRM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1956-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:48-05',
'popularity': 8,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUSA423SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Seattle-Tacoma-Bellevue WA (CBSA)',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:56-05',
'popularity': 27,
'group_popularity': 40},
{'id': 'FRACPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1955-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:08-06',
'popularity': 7,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01FRQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1956-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:36-05',
'popularity': 7,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'FRACPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '2010-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:27-05',
'popularity': 7,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01ITQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1956-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:36-05',
'popularity': 6,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01EZM657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: Harmonised Prices: All Items: Total for the Euro Area (19 Countries)',
'observation_start': '1991-01-01',
'observation_end': '2023-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:15:27-05',
'popularity': 5,
'group_popularity': 41,
'notes': 'OECD descriptor ID: CPHPTT01\nOECD unit ID: GP\nOECD country ID: EA17\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database),http://dx.doi.org/10.1787/data-00052-en (Accessed on date)\nCopyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CPALTT01ITM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1956-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:53-05',
'popularity': 5,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01EZA661N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: Harmonised Prices: All Items: Total for the Euro Area (19 Countries)',
'observation_start': '1990-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:23:02-05',
'popularity': 4,
'group_popularity': 41,
'notes': 'OECD descriptor ID: CPHPTT01\nOECD unit ID: IXOB\nOECD country ID: EA17\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database),http://dx.doi.org/10.1787/data-00052-en (Accessed on date)\nCopyright, 2016, OECD. Reprinted with permission.'},
{'id': 'EA19CPHPTT01IXEBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: Harmonised Prices: All Items: Total for the Euro Area (19 Countries)',
'observation_start': '1990-01-01',
'observation_end': '2023-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Eurostat base',
'units_short': 'Index Eurostat base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:15:31-05',
'popularity': 3,
'group_popularity': 41,
'notes': 'OECD descriptor ID: CPHPTT01 OECD unit ID: IXEB OECD country ID: EA19All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'ITACPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1955-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:08-06',
'popularity': 3,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01EZA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: Harmonised Prices: All Items: Total for the Euro Area (19 Countries)',
'observation_start': '1991-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:23:03-05',
'popularity': 2,
'group_popularity': 41,
'notes': 'OECD descriptor ID: CPHPTT01\nOECD unit ID: GY\nOECD country ID: EA17\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database),http://dx.doi.org/10.1787/data-00052-en (Accessed on date)\nCopyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CPHPTT01EZA657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: Harmonised Prices: All Items: Total for the Euro Area (19 Countries)',
'observation_start': '1991-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:23:05-05',
'popularity': 2,
'group_popularity': 41,
'notes': 'OECD descriptor ID: CPHPTT01\nOECD unit ID: GP\nOECD country ID: EA17\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database),http://dx.doi.org/10.1787/data-00052-en (Accessed on date)\nCopyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CUUS0000SAS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Services in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:04-05',
'popularity': 2,
'group_popularity': 41},
{'id': 'FRACPALTT01IXOBSAM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1990-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-05-15 14:19:27-05',
'popularity': 2,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01ITA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1956-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:09-06',
'popularity': 2,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'ITACPIHICMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1990-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:41-05',
'popularity': 2,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01ITM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1997-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:51-05',
'popularity': 2,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'FRACPIHICMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1990-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:01-05',
'popularity': 1,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01FRM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1997-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:19:46-05',
'popularity': 1,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'FRACPIHICAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for France',
'observation_start': '1990-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:08:11-06',
'popularity': 1,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: FRA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01ITA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1996-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:08:00-06',
'popularity': 1,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'ITACPIHICAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Italy',
'observation_start': '1990-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:07:33-06',
'popularity': 1,
'group_popularity': 41,
'notes': 'OECD Data Filters: \nREF_AREA: ITA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUS0000SAH3',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Household Furnishings and Operations in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:04-05',
'popularity': 20,
'group_popularity': 40},
{'id': 'BRACPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Brazil',
'observation_start': '1979-12-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:20:22-05',
'popularity': 20,
'group_popularity': 40,
'notes': 'OECD Data Filters: \nREF_AREA: BRA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'FPCPITOTLZGMEX',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Mexico',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:04-05',
'popularity': 39,
'group_popularity': 39,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'FPCPITOTLZGVNM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Viet Nam',
'observation_start': '1996-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:06-05',
'popularity': 39,
'group_popularity': 39,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'FPCPITOTLZGEMU',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for the Euro Area',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:56:05-05',
'popularity': 39,
'group_popularity': 39,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/region/EMU\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'CUUR0000SAH3',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Household Furnishings and Operations in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:07-05',
'popularity': 17,
'group_popularity': 40},
{'id': 'RBUSBIS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Broad Effective Exchange Rate for United States',
'observation_start': '1994-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2020=100',
'units_short': 'Index 2020=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-18 11:01:22-05',
'popularity': 61,
'group_popularity': 61,
'notes': 'Real effective exchange rates are calculated as weighted averages of bilateral exchange rates adjusted by relative consumer prices.\n\nCopyright, 2016, Bank for International Settlements (BIS). Terms and conditions of use are available at http://www.bis.org/terms_conditions.htm#Copyright_and_Permissions.'},
{'id': 'CUUR0000SEEE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Information Technology, Hardware and Services in U.S. City Average',
'observation_start': '1988-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1988=100',
'units_short': 'Index Dec 1988=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:17-05',
'popularity': 16,
'group_popularity': 40},
{'id': 'CPALTT01JPQ657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Japan',
'observation_start': '1955-04-01',
'observation_end': '2021-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:31:15-05',
'popularity': 15,
'group_popularity': 40,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: JPN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'TRMMEANCPIM158SFRBCLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': '16% Trimmed-Mean Consumer Price Index',
'observation_start': '1983-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change at Annual Rate',
'units_short': '% Chg. at Annual Rate',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 10:04:03-05',
'popularity': 33,
'group_popularity': 39,
'notes': '16% Trimmed-Mean Consumer Price Index (CPI) is a measure of core inflation calculated by the Federal Reserve Bank of Cleveland. The Trimmed-Mean CPI excludes the CPI components that show the most extreme monthly price changes. This series excludes 8% of the CPI components with the highest and lowest one-month price changes from each tail of the price-change distribution resulting in a 16% Trimmed-Mean Inflation Estimate.\n\nFor further information, visit The Federal Reserve Bank of Cleveland (https://www.clevelandfed.org/indicators-and-data/median-cpi#background).'},
{'id': 'JPNCPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Japan',
'observation_start': '1960-01-01',
'observation_end': '2021-06-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-02-09 15:12:20-06',
'popularity': 10,
'group_popularity': 40,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: JPN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CPALTT01JPA657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Japan',
'observation_start': '1956-01-01',
'observation_end': '2020-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:34:31-05',
'popularity': 9,
'group_popularity': 40,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: JPN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'BRACPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Brazil',
'observation_start': '1980-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:39-05',
'popularity': 8,
'group_popularity': 40,
'notes': 'OECD Data Filters: \nREF_AREA: BRA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DGDSRV1Q225SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Goods (chain-type price index)',
'observation_start': '1947-04-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Percent Change from Preceding Period',
'units_short': '% Chg. from Preceding Period',
'seasonal_adjustment': 'Seasonally Adjusted Annual Rate',
'seasonal_adjustment_short': 'SAAR',
'last_updated': '2025-09-25 07:48:50-05',
'popularity': 5,
'group_popularity': 40,
'notes': 'BEA Account Code: DGDSRV\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSERRV1Q225SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Services (chain-type price index)',
'observation_start': '1947-04-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Percent Change from Preceding Period',
'units_short': '% Chg. from Preceding Period',
'seasonal_adjustment': 'Seasonally Adjusted Annual Rate',
'seasonal_adjustment_short': 'SAAR',
'last_updated': '2025-09-25 07:49:09-05',
'popularity': 4,
'group_popularity': 40,
'notes': 'BEA Account Code: DSERRV\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPALTT01BRA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Brazil',
'observation_start': '1981-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-01-15 14:09:00-06',
'popularity': 4,
'group_popularity': 40,
'notes': 'OECD Data Filters: \nREF_AREA: BRA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'BRACPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Brazil',
'observation_start': '1980-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-01-15 14:00:05-06',
'popularity': 4,
'group_popularity': 40,
'notes': 'OECD Data Filters: \nREF_AREA: BRA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DGDSRG3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Goods (chain-type price index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:48:38-05',
'popularity': 3,
'group_popularity': 40,
'notes': 'BEA Account Code: DGDSRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'JPNCPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Japan',
'observation_start': '1960-01-01',
'observation_end': '2021-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-02-09 15:12:20-06',
'popularity': 3,
'group_popularity': 40,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: JPN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CPALTT01BRQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Brazil',
'observation_start': '1981-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:37-05',
'popularity': 3,
'group_popularity': 40,
'notes': 'OECD Data Filters: \nREF_AREA: BRA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DGDSRV1A225NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Goods (chain-type price index)',
'observation_start': '1930-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent Change from Preceding Period',
'units_short': '% Chg. from Preceding Period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:14-05',
'popularity': 2,
'group_popularity': 40,
'notes': 'BEA Account Code: DGDSRV\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSERRG3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Services (chain-type price index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:49:09-05',
'popularity': 2,
'group_popularity': 40,
'notes': 'BEA Account Code: DSERRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSERRG3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Services (chain-type price index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:39-05',
'popularity': 2,
'group_popularity': 40,
'notes': 'BEA Account Code: DSERRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DGDSRG3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Goods (chain-type price index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:49:01-05',
'popularity': 1,
'group_popularity': 40,
'notes': 'BEA Account Code: DGDSRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSERRV1A225NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Services (chain-type price index)',
'observation_start': '1930-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent Change from Preceding Period',
'units_short': '% Chg. from Preceding Period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:50-05',
'popularity': 1,
'group_popularity': 40,
'notes': 'BEA Account Code: DSERRV\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CUSR0000SEEB',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Tuition, Other School Fees, and Childcare in U.S. City Average',
'observation_start': '1978-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:09-05',
'popularity': 37,
'group_popularity': 38},
{'id': 'TRMMEANCPIM159SFRBCLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': '16% Trimmed-Mean Consumer Price Index',
'observation_start': '1983-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change from Year Ago',
'units_short': '% Chg. from Yr. Ago',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 10:04:03-05',
'popularity': 15,
'group_popularity': 39,
'notes': '16% Trimmed-Mean Consumer Price Index (CPI) is a measure of core inflation calculated by the Federal Reserve Bank of Cleveland. The Trimmed-Mean CPI excludes the CPI components that show the most extreme monthly price changes. This series excludes 8% of the CPI components with the highest and lowest one-month price changes from each tail of the price-change distribution resulting in a 16% Trimmed-Mean Inflation Estimate.\n\nFor further information, visit The Federal Reserve Bank of Cleveland (https://www.clevelandfed.org/indicators-and-data/median-cpi#background).'},
{'id': 'TRMMEANCPIM094SFRBCLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': '16% Trimmed-Mean Consumer Price Index',
'observation_start': '1982-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 10:04:04-05',
'popularity': 14,
'group_popularity': 39,
'notes': '16% Trimmed-Mean Consumer Price Index (CPI) is a measure of core inflation calculated by the Federal Reserve Bank of Cleveland. The Trimmed-Mean CPI excludes the CPI components that show the most extreme monthly price changes. This series excludes 8% of the CPI components with the highest and lowest one-month price changes from each tail of the price-change distribution resulting in a 16% Trimmed-Mean Inflation Estimate.\n\nFor further information, visit The Federal Reserve Bank of Cleveland (https://www.clevelandfed.org/indicators-and-data/median-cpi#background).'},
{'id': 'MEXCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Mexico',
'observation_start': '1969-01-01',
'observation_end': '2024-07-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-08-15 13:59:04-05',
'popularity': 27,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: MEX\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'TRMMEANCPIM157SFRBCLE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': '16% Trimmed-Mean Consumer Price Index',
'observation_start': '1983-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change',
'units_short': '% Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 10:04:04-05',
'popularity': 7,
'group_popularity': 39,
'notes': '16% Trimmed-Mean Consumer Price Index (CPI) is a measure of core inflation calculated by the Federal Reserve Bank of Cleveland. The Trimmed-Mean CPI excludes the CPI components that show the most extreme monthly price changes. This series excludes 8% of the CPI components with the highest and lowest one-month price changes from each tail of the price-change distribution resulting in a 16% Trimmed-Mean Inflation Estimate.\n\nFor further information, visit The Federal Reserve Bank of Cleveland (https://www.clevelandfed.org/indicators-and-data/median-cpi#background).'},
{'id': 'ZAFCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for South Africa',
'observation_start': '1957-01-01',
'observation_end': '2025-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-03-17 14:33:10-05',
'popularity': 25,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: ZAF\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01ZAM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for South Africa',
'observation_start': '1958-01-01',
'observation_end': '2025-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-03-17 14:33:56-05',
'popularity': 23,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: ZAF\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'FPCPITOTLZGBRA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Brazil',
'observation_start': '1981-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:04-05',
'popularity': 38,
'group_popularity': 37,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'MEXCPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Mexico',
'observation_start': '2003-07-01',
'observation_end': '2024-07-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-08-15 13:59:06-05',
'popularity': 17,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: MEX\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUR0300SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in South',
'observation_start': '1966-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:05-05',
'popularity': 36,
'group_popularity': 37},
{'id': 'ZAFCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for South Africa',
'observation_start': '1957-01-01',
'observation_end': '2024-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-03-17 14:32:51-05',
'popularity': 14,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: ZAF\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'TURCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1955-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:16:57-05',
'popularity': 29,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUR0000SEEB',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Tuition, Other School Fees, and Childcare in U.S. City Average',
'observation_start': '1977-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:18-05',
'popularity': 9,
'group_popularity': 38},
{'id': 'MEXCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Mexico',
'observation_start': '1969-01-01',
'observation_end': '2024-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-07-15 13:55:08-05',
'popularity': 7,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: MEX\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01MXM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Mexico',
'observation_start': '1969-01-01',
'observation_end': '2024-07-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-08-15 13:59:08-05',
'popularity': 7,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: MEX\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'MEXCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Mexico',
'observation_start': '1969-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-05-15 14:02:30-05',
'popularity': 6,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: MEX\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01ZAQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for South Africa',
'observation_start': '1958-01-01',
'observation_end': '2024-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-03-17 14:33:08-05',
'popularity': 5,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: ZAF\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01MXQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Mexico',
'observation_start': '1969-01-01',
'observation_end': '2024-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-07-15 13:55:18-05',
'popularity': 3,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: MEX\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'ZAFCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for South Africa',
'observation_start': '1957-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-03-17 14:40:12-05',
'popularity': 2,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: ZAF\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01ZAA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for South Africa',
'observation_start': '1958-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-03-17 14:40:13-05',
'popularity': 1,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: ZAF\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01MXA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Mexico',
'observation_start': '1969-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-05-15 14:13:03-05',
'popularity': 1,
'group_popularity': 38,
'notes': 'OECD Data Filters: \nREF_AREA: MEX\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'FPCPITOTLZGKOR',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for the Republic of Korea',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:04-05',
'popularity': 36,
'group_popularity': 36,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CUURA422SEHA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Primary Residence in San Francisco-Oakland-Hayward, CA (CBSA)',
'observation_start': '1914-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:05-05',
'popularity': 35,
'group_popularity': 36},
{'id': 'IA001176M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures Excluding Food, Energy, and Housing (Chain-Type Price Index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:17-05',
'popularity': 34,
'group_popularity': 36,
'notes': 'BEA Account Code: IA001176\n\nFor more information about this series, please see please visit the Guide to the National Income and Product Accounts of the United States (NIPA) (https://www.bea.gov/resources/methodologies/nipa-handbook).'},
{'id': 'TURCPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '2010-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:16:49-05',
'popularity': 11,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'IDNCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Indonesia',
'observation_start': '1968-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:50-05',
'popularity': 29,
'group_popularity': 36,
'notes': 'OECD Data Filters: \nREF_AREA: IDN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SAM1',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Medical Care Commodities in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:04-05',
'popularity': 29,
'group_popularity': 36},
{'id': 'TURCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1955-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:16:42-05',
'popularity': 6,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUS0300SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in South',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:41:19-05',
'popularity': 6,
'group_popularity': 37},
{'id': 'CPALTT01TRQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1956-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:17:57-05',
'popularity': 5,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01TRM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1956-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:35-05',
'popularity': 4,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'TURCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1955-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:06-06',
'popularity': 4,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'TURCPIHICMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1996-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:16:57-05',
'popularity': 3,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'TURCPIHICAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1996-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:22:45-06',
'popularity': 2,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01TRM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1997-01-01',
'observation_end': '2025-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:28-05',
'popularity': 2,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01TRA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1956-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:07:33-06',
'popularity': 1,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPHPTT01TRA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Turkiye',
'observation_start': '1997-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 14:22:46-06',
'popularity': 1,
'group_popularity': 37,
'notes': 'OECD Data Filters: \nREF_AREA: TUR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: HICP\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUR0000SAM1',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Medical Care Commodities in U.S. City Average',
'observation_start': '1947-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:07-05',
'popularity': 18,
'group_popularity': 36},
{'id': 'FPCPITOTLZGMYS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Malaysia',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:06-05',
'popularity': 35,
'group_popularity': 35,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CUSR0000SETA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: New and Used Motor Vehicles in U.S. City Average',
'observation_start': '1993-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1997=100',
'units_short': 'Index Dec 1997=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:08-05',
'popularity': 33,
'group_popularity': 35},
{'id': 'CUSR0000SAF116',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Alcoholic Beverages in U.S. City Average',
'observation_start': '1967-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:09-05',
'popularity': 33,
'group_popularity': 35},
{'id': 'CPALTT01IDM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Indonesia',
'observation_start': '1969-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:53-05',
'popularity': 12,
'group_popularity': 36,
'notes': 'OECD Data Filters: \nREF_AREA: IDN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SAF111',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Cereals and Bakery Products in U.S. City Average',
'observation_start': '1989-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:10-05',
'popularity': 30,
'group_popularity': 35},
{'id': 'CPALTT01IDQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Indonesia',
'observation_start': '1969-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:19:04-05',
'popularity': 8,
'group_popularity': 36,
'notes': 'OECD Data Filters: \nREF_AREA: IDN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01CAM657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Canada',
'observation_start': '1914-02-01',
'observation_end': '2024-02-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:34:17-05',
'popularity': 26,
'group_popularity': 35,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'IDNCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Indonesia',
'observation_start': '1968-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:18:31-05',
'popularity': 6,
'group_popularity': 36,
'notes': 'OECD Data Filters: \nREF_AREA: IDN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'IA001176Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures Excluding Food, Energy, and Housing (Chain-Type Price Index)',
'observation_start': '1959-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:48:49-05',
'popularity': 6,
'group_popularity': 36,
'notes': 'BEA Account Code: IA001176\n\nFor more information about this series, please see please visit the GDP release page (https://www.bea.gov/data/gdp/gross-domestic-product).'},
{'id': 'IDNCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Indonesia',
'observation_start': '1968-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-01-15 14:00:07-06',
'popularity': 5,
'group_popularity': 36,
'notes': 'OECD Data Filters: \nREF_AREA: IDN\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUSA422SEHA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Primary Residence in San Francisco-Oakland-Hayward, CA (CBSA)',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:56-05',
'popularity': 4,
'group_popularity': 36},
{'id': 'YC001176Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures Excluding Food, Energy, and Housing (Chain-Type Price Index)',
'observation_start': '1960-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Percent Change from Quarter One Year Ago',
'units_short': '% Chg. from Qtr. 1 Yr. Ago',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:48:35-05',
'popularity': 4,
'group_popularity': 36,
'notes': 'BEA Account Code: YC001176\r\n\r\nFor more information about this series, please see please visit the GDP release page (https://www.bea.gov/data/gdp/gross-domestic-product).'},
{'id': 'IA001176A',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures Excluding Food, Energy, and Housing (Chain-Type Price Index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:49:56-05',
'popularity': 2,
'group_popularity': 36,
'notes': 'BEA Account Code: IA001176\n\nFor more information about this series, please see please visit the GDP release page (https://www.bea.gov/data/gdp/gross-domestic-product).'},
{'id': 'CPALTT01IDA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Indonesia',
'observation_start': '1969-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-01-15 14:09:00-06',
'popularity': 1,
'group_popularity': 36,
'notes': 'OECD Data Filters: \nREF_AREA: IDN\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUS0000SAM1',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Medical Care Commodities in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:04-05',
'popularity': 1,
'group_popularity': 36},
{'id': 'CUUR0000SAF111',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Cereals and Bakery Products in U.S. City Average',
'observation_start': '1935-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:18-05',
'popularity': 16,
'group_popularity': 35},
{'id': 'CPALTT01CAQ657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Canada',
'observation_start': '1914-04-01',
'observation_end': '2023-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:34:33-05',
'popularity': 15,
'group_popularity': 35,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CP0000USM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All-Items HICP for United States',
'observation_start': '2001-12-01',
'observation_end': '2024-12-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-01-17 07:10:02-06',
'popularity': 34,
'group_popularity': 34,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGITA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Italy',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:03-05',
'popularity': 34,
'group_popularity': 34,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CPALTT01CAA657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Canada',
'observation_start': '1915-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:34:32-05',
'popularity': 13,
'group_popularity': 35,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUUR0000SETA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: New and Used Motor Vehicles in U.S. City Average',
'observation_start': '1993-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1997=100',
'units_short': 'Index Dec 1997=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:15-05',
'popularity': 12,
'group_popularity': 35},
{'id': 'CPALCY01CAM661N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: City: Total for Canada',
'observation_start': '1961-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:27:04-06',
'popularity': 31,
'group_popularity': 34,
'notes': 'OECD Descriptor ID: CPALCY01\nOECD unit ID: IDX\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CANCPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Canada',
'observation_start': '1960-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:35:02-06',
'popularity': 9,
'group_popularity': 35,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUSR0000SAS2RS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Shelter in U.S. City Average',
'observation_start': '1990-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:09-05',
'popularity': 28,
'group_popularity': 34},
{'id': 'CPIUKQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index in the United Kingdom',
'observation_start': '1914-07-01',
'observation_end': '2016-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2017-06-09 08:51:16-05',
'popularity': 24,
'group_popularity': 34,
'notes': 'This series was constructed by the Bank of England as part of the Three Centuries of Macroeconomic Data project by combining data from a number of academic and official sources. For more information, please refer to the Three Centuries spreadsheet at https://www.bankofengland.co.uk/statistics/research-datasets. Users are advised to check the underlying assumptions behind this series in the relevant worksheets of the spreadsheet. In many cases alternative assumptions might be appropriate. Users are permitted to reproduce this series in their own work as it represents Bank calculations and manipulations of underlying series that are the copyright of the Bank of England provided that underlying sources are cited appropriately. For appropriate citation please see the Three Centuries spreadsheet for guidance and a list of the underlying sources.'},
{'id': 'CUUS0000SAF116',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Alcoholic Beverages in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:05-05',
'popularity': 4,
'group_popularity': 35},
{'id': 'CUUR0000SAF116',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Alcoholic Beverages in U.S. City Average',
'observation_start': '1952-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:28-05',
'popularity': 4,
'group_popularity': 35},
{'id': 'CANCPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Canada',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 11:58:32-06',
'popularity': 2,
'group_popularity': 35,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUUS0000SETA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: New and Used Motor Vehicles in U.S. City Average',
'observation_start': '1993-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index Dec 1997=100',
'units_short': 'Index Dec 1997=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:20-05',
'popularity': 2,
'group_popularity': 35},
{'id': 'CUUS0000SAF111',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Cereals and Bakery Products in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:05-05',
'popularity': 2,
'group_popularity': 35},
{'id': 'CPIUKA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index in the United Kingdom',
'observation_start': '1209-01-01',
'observation_end': '2016-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2018-03-12 09:11:02-05',
'popularity': 21,
'group_popularity': 34,
'notes': 'This series was constructed by the Bank of England as part of the Three Centuries of Macroeconomic Data project by combining data from a number of academic and official sources. For more information, please refer to the Three Centuries spreadsheet at https://www.bankofengland.co.uk/statistics/research-datasets. Users are advised to check the underlying assumptions behind this series in the relevant worksheets of the spreadsheet. In many cases alternative assumptions might be appropriate. Users are permitted to reproduce this series in their own work as it represents Bank calculations and manipulations of underlying series that are the copyright of the Bank of England provided that underlying sources are cited appropriately. For appropriate citation please see the Three Centuries spreadsheet for guidance and a list of the underlying sources.'},
{'id': 'CUUR0000SAS2RS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Shelter in U.S. City Average',
'observation_start': '1982-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:13-05',
'popularity': 16,
'group_popularity': 34},
{'id': 'DDURRG3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Durable goods (chain-type price index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:17-05',
'popularity': 33,
'group_popularity': 33,
'notes': 'BEA Account Code: DDURRG\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPIEHOUSE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Research Consumer Price Index: Housing',
'observation_start': '1982-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982=100',
'units_short': 'Index 1982=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 15:31:02-05',
'popularity': 33,
'group_popularity': 33,
'notes': 'The BLS calculates a research price index called the Consumer Price Index for Americans 62 years of age and older, or R-CPI-E. The R-CPI-E is used by those interested in measures of price change specifically based on the spending patterns of the elderly (as defined in the construction of this index). Official uses of the R-CPI-E have been considered by other government agencies but not implemented due to several limitations. These limitations must be considered and understood by potential users of the data, and any conclusions drawn from these analyses should be treated as tentative.\n\nSee the Bureau of Labor Statistics (BLS) (https://www.bls.gov/cpi/research-series/r-cpi-e-home.htm) from more information.'},
{'id': 'DPCERA3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:16-05',
'popularity': 33,
'group_popularity': 35,
'notes': 'BEA Account Code: DPCERA\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CUURA421SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Los Angeles-Riverside-Orange County, CA (CMSA) (DISCONTINUED)',
'observation_start': '1914-12-01',
'observation_end': '2017-12-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2018-01-12 09:11:07-06',
'popularity': 28,
'group_popularity': 33,
'notes': 'This series was discontinued as a result of the introduction of a new geographic area sample for the Consumer Price Index. Information on the geographic revision is available at https://www.bls.gov/cpi/additional-resources/geographic-revision-2018.htm.'},
{'id': 'CPALCY01CAQ661N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: City: Total for Canada',
'observation_start': '1961-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 11:58:03-06',
'popularity': 7,
'group_popularity': 34,
'notes': 'OECD Descriptor ID: CPALCY01\nOECD unit ID: IDX\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUSR0000SEMD',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Hospital and Related Services in U.S. City Average',
'observation_start': '1978-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:05-05',
'popularity': 26,
'group_popularity': 33},
{'id': 'CUUSA421SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Los Angeles-Riverside-Orange County, CA (CMSA) (DISCONTINUED)',
'observation_start': '1984-01-01',
'observation_end': '2017-07-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2018-01-12 09:12:15-06',
'popularity': 22,
'group_popularity': 33,
'notes': 'This series was discontinued as a result of the introduction of a new geographic area sample for the Consumer Price Index. Information on the geographic revision is available at https://www.bls.gov/cpi/additional-resources/geographic-revision-2018.htm.'},
{'id': 'CPALCY01CAA661N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: City: Total for Canada',
'observation_start': '1961-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-02-14 11:48:02-06',
'popularity': 2,
'group_popularity': 34,
'notes': 'OECD Descriptor ID: CPALCY01\nOECD unit ID: IDX\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUUR0000SEMD',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Hospital and Related Services in U.S. City Average',
'observation_start': '1977-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:06-05',
'popularity': 21,
'group_popularity': 33},
{'id': 'CUUS0000SAS2RS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Rent of Shelter in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index Dec 1982=100',
'units_short': 'Index Dec 1982=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:03-05',
'popularity': 1,
'group_popularity': 34},
{'id': 'KORCPIALLQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Korea',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 11:49:02-06',
'popularity': 20,
'group_popularity': 33,
'notes': 'OECD Data Filters: \nREF_AREA: KOR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'KORCPIALLMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Korea',
'observation_start': '1960-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-12-12 14:52:03-06',
'popularity': 15,
'group_popularity': 33,
'notes': 'OECD Data Filters: \nREF_AREA: KOR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DTENRG3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Services: Housing: Rental of tenant-occupied nonfarm housing (chain-type price index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:09-05',
'popularity': 32,
'group_popularity': 32,
'notes': 'BEA Account Code: DTENRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CUURA207SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Chicago-Naperville-Elgin, IL-IN-WI (CBSA)',
'observation_start': '1914-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:06-05',
'popularity': 31,
'group_popularity': 32},
{'id': 'CUSR0000SS62031',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Admission to Movies, Theaters, and Concerts in U.S. City Average',
'observation_start': '1999-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1997=100',
'units_short': 'Index Dec 1997=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:10-05',
'popularity': 31,
'group_popularity': 32},
{'id': 'CUUR0200SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Midwest',
'observation_start': '1966-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:06-05',
'popularity': 31,
'group_popularity': 32},
{'id': 'CUUR0400SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in West',
'observation_start': '1966-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:06-05',
'popularity': 31,
'group_popularity': 32},
{'id': 'KORCPALTT01CTGYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Korea',
'observation_start': '2010-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Contribution to growth rate, over 1 year',
'units_short': 'Contribution to growth rate, over 1 Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:18:12-05',
'popularity': 11,
'group_popularity': 33,
'notes': 'OECD Data Filters: \nREF_AREA: KOR\nMEASURE: CPI\nUNIT_MEASURE: PD\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GOY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DDOE01ARA086NWDB',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for Argentina',
'observation_start': '1960-01-01',
'observation_end': '2014-01-01',
'frequency': 'Annual, End of Year',
'frequency_short': 'A',
'units': 'Index 2010=100',
'units_short': 'Index 2010=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2018-09-21 11:21:03-05',
'popularity': 27,
'group_popularity': 32,
'notes': 'Consumer price index reflects changes in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nSource Code: GFDD.OE.01'},
{'id': 'CUSR0000SEEE01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Computers, Peripherals, and Smart Home Assistants in U.S. City Average',
'observation_start': '2005-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 2007=100',
'units_short': 'Index Dec 2007=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:13-05',
'popularity': 26,
'group_popularity': 32},
{'id': 'EA19CPALTT01GYM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total: Total for the Euro Area (19 Countries)',
'observation_start': '1991-01-01',
'observation_end': '2023-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:15:07-05',
'popularity': 26,
'group_popularity': 32,
'notes': 'OECD descriptor ID: CPALTT01 OECD unit ID: GY OECD country ID: EA19 All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CPALTT01FRM657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for France',
'observation_start': '1955-02-01',
'observation_end': '2024-02-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:30:21-05',
'popularity': 24,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: FRA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CPALTT01DEM657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Germany',
'observation_start': '1955-02-01',
'observation_end': '2024-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-15 13:51:03-05',
'popularity': 24,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: DEU\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DPCERA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures (chain-type quantity index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:43-05',
'popularity': 8,
'group_popularity': 35,
'notes': 'BEA Account Code: DPCERA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'KORCPIALLAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Korea',
'observation_start': '1960-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-01-13 11:34:03-06',
'popularity': 4,
'group_popularity': 33,
'notes': 'OECD Data Filters: \nREF_AREA: KOR\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DDURRG3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Durable goods (chain-type price index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:48:50-05',
'popularity': 3,
'group_popularity': 33,
'notes': 'BEA Account Code: DDURRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPALTT01KRQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Korea',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 11:49:06-06',
'popularity': 3,
'group_popularity': 33,
'notes': 'OECD Data Filters: \nREF_AREA: KOR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CPALTT01KRM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Korea',
'observation_start': '1960-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-12-12 14:52:05-06',
'popularity': 3,
'group_popularity': 33,
'notes': 'OECD Data Filters: \nREF_AREA: KOR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'DDURRG3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Durable goods (chain-type price index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:19-05',
'popularity': 1,
'group_popularity': 33,
'notes': 'BEA Account Code: DDURRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPALTT01KRA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: Total for Korea',
'observation_start': '1960-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-01-13 11:53:49-06',
'popularity': 1,
'group_popularity': 33,
'notes': 'OECD Data Filters: \nREF_AREA: KOR\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _T\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUR0000SEEE01',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Computers, Peripherals, and Smart Home Assistants in U.S. City Average',
'observation_start': '1997-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 2007=100',
'units_short': 'Index Dec 2007=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:14-05',
'popularity': 19,
'group_popularity': 32},
{'id': 'NB000350Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Personal Consumption Expenditures: Services',
'observation_start': '2002-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:49:07-05',
'popularity': 1,
'group_popularity': 57,
'notes': 'BEA Account Code: NB000350'},
{'id': 'DPCERA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:37-05',
'popularity': 2,
'group_popularity': 35,
'notes': 'BEA Account Code: DPCERA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPALTT01FRA657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for France',
'observation_start': '1956-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:32:15-05',
'popularity': 16,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: FRA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DDOE02ARA086NWDB',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for Argentina',
'observation_start': '1960-01-01',
'observation_end': '2015-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2010=100',
'units_short': 'Index 2010=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2018-09-21 11:21:19-05',
'popularity': 15,
'group_popularity': 32,
'notes': 'Consumer price index reflects changes in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nSource Code: GFDD.OE.02'},
{'id': 'FPCPITOTLZGARG',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Argentina',
'observation_start': '2018-01-01',
'observation_end': '2019-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2020-06-01 16:59:01-05',
'popularity': 32,
'group_popularity': 31,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'JPNPCPIPCPPPT',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Prices: Consumer Price Index for Japan',
'observation_start': '1990-01-01',
'observation_end': '2029-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent Change',
'units_short': '% Chg.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-11-06 10:04:01-06',
'popularity': 31,
'group_popularity': 31,
'notes': 'Observations for the current and future years are projections.\n\nThe IMF provides these series as part of their Regional Economic Outlook (REO) reports. These reports discuss recent economic developments and prospects for countries in various regions. They also address economic policy developments that have affected economic performance in their regions and provide country-specific data and analysis.\n\nFor more information, please see the Regional Economic Outlook (https://www.imf.org/en/publications/reo) publications.\n\nCopyright © 2016, International Monetary Fund. Reprinted with permission. Complete terms of use and contact details are available here (http://www.imf.org/external/terms.htm).'},
{'id': 'FPCPITOTLZGISR',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Israel',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:39-05',
'popularity': 31,
'group_popularity': 31,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CPALTT01DEA657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Germany',
'observation_start': '1956-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:32:22-05',
'popularity': 11,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: DEU\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NB000333Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Government Consumption Expenditures and Gross Investment',
'observation_start': '2002-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:47:49-05',
'popularity': 3,
'group_popularity': 57,
'notes': 'BEA Account Code: NB000333'},
{'id': 'CUUSA207SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Chicago-Naperville-Elgin, IL-IN-WI (CBSA)',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:41:50-05',
'popularity': 10,
'group_popularity': 32},
{'id': 'CPALTT01FRQ657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for France',
'observation_start': '1955-04-01',
'observation_end': '2023-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-10 11:34:32-05',
'popularity': 10,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: FRA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CPALTT01DEQ657N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Germany',
'observation_start': '1955-04-01',
'observation_end': '2024-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-04-15 13:52:03-05',
'popularity': 9,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: PC\nOECD country ID: DEU\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUUR0000SEAE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Footwear in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:12-05',
'popularity': 28,
'group_popularity': 31},
{'id': 'EA19CPALTT01IXOBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total: Total for the Euro Area (19 Countries)',
'observation_start': '1990-01-01',
'observation_end': '2022-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:03:04-05',
'popularity': 8,
'group_popularity': 32,
'notes': 'OECD descriptor ID: CPALTT01 OECD unit ID: IXOB OECD country ID: EA19 All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'DEUCPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Germany',
'observation_start': '1960-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:33:41-06',
'popularity': 7,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: DEU\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'EA19CPALTT01IXOBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total: Total for the Euro Area (19 Countries)',
'observation_start': '1990-01-01',
'observation_end': '2023-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:15:18-05',
'popularity': 6,
'group_popularity': 32,
'notes': 'OECD descriptor ID: CPALTT01 OECD unit ID: IXOB OECD country ID: EA19 All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CUUS0200SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Midwest',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:42:12-05',
'popularity': 6,
'group_popularity': 32},
{'id': 'EA19CPALTT01GPM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total: Total for the Euro Area (19 Countries)',
'observation_start': '1991-01-01',
'observation_end': '2023-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:15:15-05',
'popularity': 5,
'group_popularity': 32,
'notes': 'OECD descriptor ID: CPALTT01 OECD unit ID: GP OECD country ID: EA19All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CUUR0000SS62031',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Admission to Movies, Theaters, and Concerts in U.S. City Average',
'observation_start': '1997-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1997=100',
'units_short': 'Index Dec 1997=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:26-05',
'popularity': 5,
'group_popularity': 32},
{'id': 'CUUS0400SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in West',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:41:19-05',
'popularity': 5,
'group_popularity': 32},
{'id': 'CUUR0000SEFJ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Dairy and Related Products in U.S. City Average',
'observation_start': '1935-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:12-05',
'popularity': 24,
'group_popularity': 31},
{'id': 'FRACPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for France',
'observation_start': '1960-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:32:46-06',
'popularity': 3,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: FRA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CUSR0000SEGA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Tobacco and Smoking Products in U.S. City Average',
'observation_start': '1986-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:40:14-05',
'popularity': 22,
'group_popularity': 31},
{'id': 'EA19CPALTT01GPQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total: Total for the Euro Area (19 Countries)',
'observation_start': '1990-04-01',
'observation_end': '2022-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate previous period',
'units_short': 'Growth rate previous period',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:03:08-05',
'popularity': 2,
'group_popularity': 32,
'notes': 'OECD descriptor ID: CPALTT01 OECD unit ID: GP OECD country ID: EA19All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'EA19CPALTT01GYQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total: Total for the Euro Area (19 Countries)',
'observation_start': '1991-01-01',
'observation_end': '2022-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:03:06-05',
'popularity': 2,
'group_popularity': 32,
'notes': 'OECD descriptor ID: CPALTT01 OECD unit ID: GY OECD country ID: EA19 All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'EA19CPALTT01IXNBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total: Total for the Euro Area (19 Countries)',
'observation_start': '1990-01-01',
'observation_end': '2023-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:15:43-05',
'popularity': 2,
'group_popularity': 32,
'notes': 'OECD descriptor ID: CPALTT01 OECD unit ID: IXNB OECD country ID: EA19All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'DEUCPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for Germany',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 11:56:23-06',
'popularity': 2,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: DEU\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'FRACPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total for France',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-11-17 11:53:37-06',
'popularity': 1,
'group_popularity': 32,
'notes': 'OECD Descriptor ID: CPALTT01\nOECD unit ID: IDX\nOECD country ID: FRA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'EA19CPALTT01IXNBQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index: All Items: Total: Total for the Euro Area (19 Countries)',
'observation_start': '1990-01-01',
'observation_end': '2022-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index source base',
'units_short': 'Index source base',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2023-03-15 13:06:47-05',
'popularity': 1,
'group_popularity': 32,
'notes': 'OECD descriptor ID: CPALTT01 OECD unit ID: IXNB OECD country ID: EA19All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CUUR0000SEGA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Tobacco and Smoking Products in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:40:14-05',
'popularity': 20,
'group_popularity': 31},
{'id': 'CUSR0000SEFJ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Dairy and Related Products in U.S. City Average',
'observation_start': '1989-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:16-05',
'popularity': 19,
'group_popularity': 31},
{'id': 'DPCXRG3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Market-based PCE excluding food and energy (chain-type price index)',
'observation_start': '1987-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:18-05',
'popularity': 31,
'group_popularity': 30,
'notes': 'BEA Account Code: DPCXRG\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CUSR0000SEAE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Footwear in U.S. City Average',
'observation_start': '1947-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:18-05',
'popularity': 11,
'group_popularity': 31},
{'id': 'CPIEALL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Research Consumer Price Index: All Items',
'observation_start': '1982-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982=100',
'units_short': 'Index 1982=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 15:31:02-05',
'popularity': 30,
'group_popularity': 30,
'notes': 'The BLS calculates a research price index called the Consumer Price Index for Americans 62 years of age and older, or R-CPI-E. The R-CPI-E is used by those interested in measures of price change specifically based on the spending patterns of the elderly (as defined in the construction of this index). Official uses of the R-CPI-E have been considered by other government agencies but not implemented due to several limitations. These limitations must be considered and understood by potential users of the data, and any conclusions drawn from these analyses should be treated as tentative.\n\nSee the Bureau of Labor Statistics (BLS) (https://www.bls.gov/cpi/research-series/r-cpi-e-home.htm) from more information.'},
{'id': 'FPCPITOTLZGAUS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Australia',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:04-05',
'popularity': 30,
'group_popularity': 30,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'CPIIUKA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Inflation in the United Kingdom',
'observation_start': '1210-01-01',
'observation_end': '2016-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2018-03-12 09:11:01-05',
'popularity': 30,
'group_popularity': 30,
'notes': 'This series was constructed by the Bank of England as part of the Three Centuries of Macroeconomic Data project by combining data from a number of academic and official sources. For more information, please refer to the Three Centuries spreadsheet at https://www.bankofengland.co.uk/statistics/research-datasets. Users are advised to check the underlying assumptions behind this series in the relevant worksheets of the spreadsheet. In many cases alternative assumptions might be appropriate. Users are permitted to reproduce this series in their own work as it represents Bank calculations and manipulations of underlying series that are the copyright of the Bank of England provided that underlying sources are cited appropriately. For appropriate citation please see the Three Centuries spreadsheet for guidance and a list of the underlying sources.'},
{'id': 'FPCPITOTLZGZAF',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for South Africa',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:05-05',
'popularity': 30,
'group_popularity': 30,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'FPCPITOTLZGSGP',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Singapore',
'observation_start': '1961-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:37-05',
'popularity': 30,
'group_popularity': 30,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nInternational Monetary Fund, International Financial Statistics and data files.'},
{'id': 'DHLCRG3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Services: Health care (chain-type price index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:21-05',
'popularity': 28,
'group_popularity': 30,
'notes': 'BEA Account Code: DHLCRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CUUSA433SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All items in Denver-Aurora-Lakewood, CO (CBSA)',
'observation_start': '1984-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-01-15 07:40:30-06',
'popularity': 26,
'group_popularity': 30},
{'id': 'CUURA103SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Boston-Cambridge-Newton, MA-NH (CBSA)',
'observation_start': '1914-12-01',
'observation_end': '2025-07-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-08-12 07:42:16-05',
'popularity': 25,
'group_popularity': 30},
{'id': 'CCRETT01GBQ661N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Financial Market: Real Effective Exchange Rates: CPI Based for United Kingdom',
'observation_start': '1972-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-15 13:59:12-05',
'popularity': 24,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CCRE\nUNIT_MEASURE: IX\nACTIVITY: _Z\nADJUSTMENT: _Z\nTRANSFORMATION: _Z\nTIME_HORIZ: _Z\nMETHODOLOGY: N\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CCRETT01GBM661N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Financial Market: Real Effective Exchange Rates: CPI Based for United Kingdom',
'observation_start': '1972-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-15 14:00:15-05',
'popularity': 23,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CCRE\nUNIT_MEASURE: IX\nACTIVITY: _Z\nADJUSTMENT: _Z\nTRANSFORMATION: _Z\nTIME_HORIZ: _Z\nMETHODOLOGY: N\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CCRETT01GBA661N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Financial Market: Real Effective Exchange Rates: CPI Based for United Kingdom',
'observation_start': '1972-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-15 14:13:27-05',
'popularity': 22,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: GBR\nMEASURE: CCRE\nUNIT_MEASURE: IX\nACTIVITY: _Z\nADJUSTMENT: _Z\nTRANSFORMATION: _Z\nTIME_HORIZ: _Z\nMETHODOLOGY: N\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUS0000SEGA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Tobacco and Smoking Products in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:21-05',
'popularity': 1,
'group_popularity': 31},
{'id': 'CUUS0000SEAE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Footwear in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:03-05',
'popularity': 1,
'group_popularity': 31},
{'id': 'CUUS0000SEFJ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Dairy and Related Products in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:03-05',
'popularity': 1,
'group_popularity': 31},
{'id': 'CUUSA433SA0S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All Items in Denver-Aurora-Lakewood, CO (CBSA)',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:53-05',
'popularity': 17,
'group_popularity': 30},
{'id': 'USACPGRLE01IXOBSAQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: All Items Non-Food Non-Energy for United States',
'observation_start': '1957-01-01',
'observation_end': '2024-10-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-02-17 13:53:10-06',
'popularity': 16,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _TXCP01_NRG\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUSA103SA0',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: All items in Boston-Cambridge-Newton, MA-NH (CBSA)',
'observation_start': '1984-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-01-15 07:40:41-06',
'popularity': 14,
'group_popularity': 30},
{'id': 'CPGRLE01USM659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: All Items Non-Food Non-Energy for United States',
'observation_start': '1958-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:17:28-05',
'popularity': 11,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _TXCP01_NRG\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'USACPICORMINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: All Items Non-Food Non-Energy for United States',
'observation_start': '1957-01-01',
'observation_end': '2025-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-05-15 14:16:48-05',
'popularity': 10,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _TXCP01_NRG\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'JCXFE',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal Consumption Expenditures: Chain-type Price Index Less Food and Energy',
'observation_start': '1959-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:17-05',
'popularity': 29,
'group_popularity': 29,
'notes': 'BEA Account Code: DPCCRG\n\nThe number of decimal places reported varies over time.'},
{'id': 'CUSR0000SAC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Commodities in U.S. City Average',
'observation_start': '1956-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:41:11-05',
'popularity': 28,
'group_popularity': 29},
{'id': 'DHLCRG3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Services: Health care (chain-type price index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:24-05',
'popularity': 7,
'group_popularity': 30,
'notes': 'BEA Account Code: DHLCRG\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CPGRLE01USQ659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: All Items Non-Food Non-Energy for United States',
'observation_start': '1958-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:17:56-05',
'popularity': 7,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _TXCP01_NRG\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'STICKCPIXSHLTRM159SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Shelter',
'observation_start': '1968-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change from Year Ago',
'units_short': '% Chg. from Yr. Ago',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:04-05',
'popularity': 26,
'group_popularity': 29,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'USACPICORQINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: All Items Non-Food Non-Energy for United States',
'observation_start': '1957-01-01',
'observation_end': '2025-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-15 14:16:42-05',
'popularity': 3,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _TXCP01_NRG\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: Q\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'USACPGRLE01IXOBSAM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: All Items Non-Food Non-Energy for United States',
'observation_start': '1957-01-01',
'observation_end': '2024-12-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-02-17 13:53:10-06',
'popularity': 3,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _TXCP01_NRG\nADJUSTMENT: S\nTRANSFORMATION: _Z\nFREQ: M\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUSR0000SEHB',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Lodging Away from Home in U.S. City Average',
'observation_start': '1997-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1997=100',
'units_short': 'Index Dec 1997=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 07:42:06-05',
'popularity': 22,
'group_popularity': 29},
{'id': 'CPGRLE01USA659N',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: All Items Non-Food Non-Energy for United States',
'observation_start': '1958-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Growth rate same period previous year',
'units_short': 'Growth rate same period previous Yr.',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:05-06',
'popularity': 2,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: PA\nMETHODOLOGY: N\nEXPENDITURE: _TXCP01_NRG\nADJUSTMENT: N\nTRANSFORMATION: GY\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'USACPICORAINMEI',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Indices (CPIs, HICPs), COICOP 1999: Consumer Price Index: All Items Non-Food Non-Energy for United States',
'observation_start': '1957-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-02-17 13:56:08-06',
'popularity': 1,
'group_popularity': 30,
'notes': 'OECD Data Filters: \nREF_AREA: USA\nMEASURE: CPI\nUNIT_MEASURE: IX\nMETHODOLOGY: N\nEXPENDITURE: _TXCP01_NRG\nADJUSTMENT: N\nTRANSFORMATION: _Z\nFREQ: A\n\nAll OECD data should be cited as follows: OECD (year), (dataset name), (data source) DOI or https://data-explorer.oecd.org/ (https://data-explorer.oecd.org/). (accessed on (date)).'},
{'id': 'CUUR0000SEHB',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Lodging Away from Home in U.S. City Average',
'observation_start': '1997-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index Dec 1997=100',
'units_short': 'Index Dec 1997=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:42:06-05',
'popularity': 20,
'group_popularity': 29},
{'id': 'CUUR0000SAC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Commodities in U.S. City Average',
'observation_start': '1935-03-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:41:19-05',
'popularity': 7,
'group_popularity': 29},
{'id': 'STICKCPIXSHLTRM679SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Shelter',
'observation_start': '1967-04-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': '3-Month Annualized Percent Change',
'units_short': '3-Month Annualized % Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:07-05',
'popularity': 6,
'group_popularity': 29,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'STICKCPIXSHLTRM157SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Shelter',
'observation_start': '1967-02-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change',
'units_short': '% Chg.',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:06-05',
'popularity': 6,
'group_popularity': 29,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'STICKCPIXSHLTRM158SFRBATL',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Sticky Price Consumer Price Index less Shelter',
'observation_start': '1967-02-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Percent Change at Annual Rate',
'units_short': '% Chg. at Annual Rate',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-11 12:01:07-05',
'popularity': 3,
'group_popularity': 29,
'notes': 'The Sticky Price Consumer Price Index (CPI) is calculated from a subset of goods and services included in the CPI that change price relatively infrequently. Because these goods and services change price relatively infrequently, they are thought to incorporate expectations about future inflation to a greater degree than prices that change on a more frequent basis. One possible explanation for sticky prices could be the costs firms incur when changing price.\n\nTo obtain more information about this release see: Michael F. Bryan, and Brent H. Meyer. “Are Some Prices in the CPI More Forward Looking Than Others? We Think So.” Economic Commentary (Federal Reserve Bank of Cleveland) (May 19, 2010): 1–6. https://doi.org/10.26509/frbc-ec-201002 (https://doi.org/10.26509/frbc-ec-201002).'},
{'id': 'CUUS0000SAC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Consumer Price Index for All Urban Consumers: Commodities in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-01-01',
'frequency': 'Semiannual',
'frequency_short': 'SA',
'units': 'Index 1982-1984=100',
'units_short': 'Index 1982-1984=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-15 07:40:06-05',
'popularity': 1,
'group_popularity': 29},
{'id': 'APU0000708111',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Eggs, Grade A, Large (Cost per Dozen) in U.S. City Average',
'observation_start': '1980-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:01-05',
'popularity': 87,
'group_popularity': 87,
'notes': 'Large white, Grade A chicken eggs, sold in a carton of a dozen. Includes organic, non-organic, cage free, free range, and traditional.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'A829RD3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Government consumption expenditures and gross investment: State and local (implicit price deflator)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:48:20-05',
'popularity': 18,
'group_popularity': 32,
'notes': 'BEA Account Code: A829RD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'FPCPITOTLZGEUU',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for the European Union',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:56:04-05',
'popularity': 27,
'group_popularity': 27,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at https://datahelpdesk.worldbank.org/knowledgebase/articles/906519\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'A829RD3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Government consumption expenditures and gross investment: State and local (implicit price deflator)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:47:43-05',
'popularity': 23,
'group_popularity': 32,
'notes': 'BEA Account Code: A829RD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'APU0000703112',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Ground Beef, 100% Beef (Cost per Pound/453.6 Grams) in U.S. City Average',
'observation_start': '1984-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:02-05',
'popularity': 81,
'group_popularity': 81,
'notes': 'Fresh regular 100% ground beef excluding round, chuck, and sirloin. Includes organic and non-organic. Excludes pre-formed patties.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'DDURRA3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Durable goods (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:22-05',
'popularity': 21,
'group_popularity': 25,
'notes': 'BEA Account Code: DDURRA\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DDURRA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Durable goods (chain-type quantity index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:57-05',
'popularity': 7,
'group_popularity': 25,
'notes': 'BEA Account Code: DDURRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DDURRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Durable goods (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:23-05',
'popularity': 1,
'group_popularity': 25,
'notes': 'BEA Account Code: DDURRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DNDGRA3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Nondurable goods (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:22-05',
'popularity': 19,
'group_popularity': 22,
'notes': 'BEA Account Code: DNDGRA\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'APU000072610',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Electricity per Kilowatt-Hour in U.S. City Average',
'observation_start': '1978-11-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:33:02-05',
'popularity': 77,
'group_popularity': 77,
'notes': 'All electricity.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'APU0000709112',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Milk, Fresh, Whole, Fortified (Cost per Gallon/3.8 Liters) in U.S. City Average',
'observation_start': '1995-07-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:02-05',
'popularity': 77,
'group_popularity': 77,
'notes': 'Fresh whole milk, fortified, sold per gallon regardless of packaging type. Includes organic and non-organic milk.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'DNDGRA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Nondurable goods (chain-type quantity index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:48:00-05',
'popularity': 5,
'group_popularity': 22,
'notes': 'BEA Account Code: DNDGRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DNDGRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Nondurable goods (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:44-05',
'popularity': 1,
'group_popularity': 22,
'notes': 'BEA Account Code: DNDGRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CP00MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All-Items HICP for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:02-05',
'popularity': 17,
'group_popularity': 16,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGOED',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for OECD Members',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:38-05',
'popularity': 15,
'group_popularity': 15,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGLCN',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices: All Income Levels for Latin America and Caribbean',
'observation_start': '1967-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:38-05',
'popularity': 14,
'group_popularity': 14,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'APU0000702111',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Bread, White, Pan (Cost per Pound/453.6 Grams) in U.S. City Average',
'observation_start': '1980-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:03-05',
'popularity': 72,
'group_popularity': 72,
'notes': 'All white pre-packaged regular bread regardless of size. Includes frozen and fresh bread.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'NAEXKP02INQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for India',
'observation_start': '2011-04-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-12-12 15:07:43-06',
'popularity': 1,
'group_popularity': 17,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: IND\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02INA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for India',
'observation_start': '2012-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-06-23 12:56:41-05',
'popularity': 1,
'group_popularity': 17,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: IND\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DGARRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Nondurable goods: Garments (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:47-05',
'popularity': 16,
'group_popularity': 16,
'notes': 'BEA Account Code: DGARRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'APU000074714',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Gasoline, Unleaded Regular (Cost per Gallon/3.785 Liters) in U.S. City Average',
'observation_start': '1976-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:33:03-05',
'popularity': 71,
'group_popularity': 71,
'notes': 'All unleaded regular gasoline.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'RNUSBIS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Narrow Effective Exchange Rate for United States',
'observation_start': '1964-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2020=100',
'units_short': 'Index 2020=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-18 11:01:03-05',
'popularity': 33,
'group_popularity': 33,
'notes': 'Real effective exchange rates are calculated as weighted averages of bilateral exchange rates adjusted by relative consumer prices.\n\nCopyright, 2016, Bank for International Settlements (BIS). Terms and conditions of use are available at http://www.bis.org/terms_conditions.htm#Copyright_and_Permissions.'},
{'id': 'NAEXKP02USQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for United States',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:03:40-06',
'popularity': 1,
'group_popularity': 14,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: USA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02USA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for United States',
'observation_start': '1960-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-10-12 11:53:01-05',
'popularity': 1,
'group_popularity': 14,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: USA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'APU0000FF1101',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Chicken Breast, Boneless (Cost per Pound/453.6 Grams) in U.S. City Average',
'observation_start': '2006-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:02-05',
'popularity': 71,
'group_popularity': 70,
'notes': 'All whole or half boneless, skinless chicken breasts. Includes organic, non-organic, fresh, and frozen, as well as other descriptive claims.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'NB000330Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Federal Consumption Expenditures and Gross Investment',
'observation_start': '2002-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:52:01-05',
'popularity': 1,
'group_popularity': 12,
'notes': 'BEA Account Code: NB000330'},
{'id': 'DFXARA3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Food (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:25-05',
'popularity': 10,
'group_popularity': 10,
'notes': 'BEA Account Code: DFXARA\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02JPQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Japan',
'observation_start': '1994-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:09:54-06',
'popularity': 2,
'group_popularity': 12,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: JPN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02JPA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Japan',
'observation_start': '1994-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:52:15-06',
'popularity': 1,
'group_popularity': 12,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: JPN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DLIGRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Admissions to specified spectator amusements: Live entertainment, excluding sports (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:46:57-05',
'popularity': 9,
'group_popularity': 9,
'notes': 'BEA Account Code: DLIGRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02GBQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for United Kingdom',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:12:50-06',
'popularity': 1,
'group_popularity': 13,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: GBR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02GBA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for United Kingdom',
'observation_start': '1960-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:52:25-06',
'popularity': 1,
'group_popularity': 13,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: GBR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DGDSRD3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Goods (implicit price deflator)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:46-05',
'popularity': 9,
'group_popularity': 10,
'notes': 'BEA Account Code: DGDSRD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02EZQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for the Euro Area (19 Countries)',
'observation_start': '1995-01-01',
'observation_end': '2023-01-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-08-02 16:44:39-05',
'popularity': 1,
'group_popularity': 16,
'notes': 'OECD descriptor ID: NAEXKP02\nOECD unit ID: IXOBSA\nOECD country ID: EA17\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database),http://dx.doi.org/10.1787/data-00052-en (Accessed on date)\nCopyright, 2016, OECD. Reprinted with permission.'},
{'id': 'NAEXKP02EZA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for the Euro Area (19 Countries)',
'observation_start': '1995-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-08-09 10:27:14-05',
'popularity': 1,
'group_popularity': 16,
'notes': 'OECD descriptor ID: NAEXKP02\nOECD unit ID: IXOBSA\nOECD country ID: EA17\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database),http://dx.doi.org/10.1787/data-00052-en (Accessed on date)\nCopyright, 2016, OECD. Reprinted with permission.'},
{'id': 'DGDSRD3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Goods (implicit price deflator)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:14-05',
'popularity': 1,
'group_popularity': 10,
'notes': 'BEA Account Code: DGDSRD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'APU0000717311',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Coffee, 100%, Ground Roast, All Sizes (Cost per Pound/453.6 Grams) in U.S. City Average',
'observation_start': '1980-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:03-05',
'popularity': 65,
'group_popularity': 65,
'notes': 'Ground, regular caffeine content coffee sold in a can or plastic container, regardless of size.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'FPCPITOTLZGHIC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for High Income Countries',
'observation_start': '1981-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:39-05',
'popularity': 5,
'group_popularity': 5,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGEAP',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Developing Countries in East Asia and Pacific',
'observation_start': '1977-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:39-05',
'popularity': 5,
'group_popularity': 5,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups. A developing nation is defined as one which falls within the lower or middle income bracket.\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'DFXARA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Nondurable goods: Food and beverages purchased for off-premises consumption (chain-type quantity index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:49:11-05',
'popularity': 9,
'group_popularity': 9,
'notes': 'BEA Account Code: DFXARA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02GRQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Greece',
'observation_start': '1970-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:11:37-06',
'popularity': 1,
'group_popularity': 9,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: GRC\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02GRA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Greece',
'observation_start': '1970-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:52:25-06',
'popularity': 1,
'group_popularity': 9,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: GRC\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DFXARA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Nondurable goods: Food and beverages purchased for off-premises consumption (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:15-05',
'popularity': 1,
'group_popularity': 9,
'notes': 'BEA Account Code: DFXARA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'CP041MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Actual Rentals for Housing for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:45-05',
'popularity': 4,
'group_popularity': 4,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVEA20MI15HOUSM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Housing for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:52-05',
'popularity': 4,
'group_popularity': 4,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGMNA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Developing Countries in Middle East and North Africa',
'observation_start': '1970-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:38-05',
'popularity': 4,
'group_popularity': 4,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups. A developing nation is defined as one which falls within the lower or middle income bracket.\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'DMSCRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Durable goods: Musical instruments (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:48:44-05',
'popularity': 8,
'group_popularity': 8,
'notes': 'BEA Account Code: DMSCRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02NLQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Netherlands',
'observation_start': '1988-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:07:45-06',
'popularity': 2,
'group_popularity': 8,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: NLD\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02NLA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Netherlands',
'observation_start': '1988-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-08-09 10:29:10-05',
'popularity': 1,
'group_popularity': 8,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: NLD\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CP0121MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Coffee, Tea and Cocoa for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:11-05',
'popularity': 3,
'group_popularity': 3,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGMEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices: All Income Levels for Middle East and North Africa',
'observation_start': '1970-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:38-05',
'popularity': 3,
'group_popularity': 3,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'DDURRD3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Durable goods (implicit price deflator)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:23-05',
'popularity': 1,
'group_popularity': 7,
'notes': 'BEA Account Code: DDURRD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DPCCRA3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures excluding food and energy (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:24-05',
'popularity': 3,
'group_popularity': 5,
'notes': 'BEA Account Code: DPCCRA\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02ATQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Austria',
'observation_start': '1988-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-12-12 14:46:28-06',
'popularity': 2,
'group_popularity': 7,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: AUT\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DPCCRA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures excluding food and energy (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:48:00-05',
'popularity': 3,
'group_popularity': 5,
'notes': 'BEA Account Code: DPCCRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02ESQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Spain',
'observation_start': '1995-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:15:25-06',
'popularity': 1,
'group_popularity': 7,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: ESP\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02ESA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Spain',
'observation_start': '1995-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-10-12 12:19:26-05',
'popularity': 1,
'group_popularity': 7,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: ESP\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02BRQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Brazil',
'observation_start': '1996-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:11:07-06',
'popularity': 1,
'group_popularity': 7,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: BRA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02BRA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Brazil',
'observation_start': '1996-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:37:04-06',
'popularity': 1,
'group_popularity': 7,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: BRA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02TRQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Turkey',
'observation_start': '1998-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:03:40-06',
'popularity': 1,
'group_popularity': 7,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: TUR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02TRA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Turkey',
'observation_start': '1998-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:51:48-06',
'popularity': 1,
'group_popularity': 7,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: TUR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02ATA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Austria',
'observation_start': '1988-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-10-12 12:19:38-05',
'popularity': 1,
'group_popularity': 7,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: AUT\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DPCCRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures excluding food and energy (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:37-05',
'popularity': 1,
'group_popularity': 5,
'notes': 'BEA Account Code: DPCCRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'APU0000712311',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Tomatoes, Field Grown (Cost per Pound/453.6 Grams) in U.S. City Average',
'observation_start': '1980-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:03-05',
'popularity': 62,
'group_popularity': 62,
'notes': 'All fresh field grown and vine ripened round red tomatoes. Includes organic and non-organic.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'NB000331Q',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real Government Consumption Expenditures and Gross Investment: Federal: National defense',
'observation_start': '2002-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:52:01-05',
'popularity': 1,
'group_popularity': 27,
'notes': 'BEA Account Code: NB000331'},
{'id': '00XALCFRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for France',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:46-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGSAS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for South Asia',
'observation_start': '1965-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:37-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'CP0731MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Passenger Transport by Railway for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:03-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0733MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Passenger Transport by Air for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:06-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0723MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Maintenance and Repair of Personal Transport Equipment for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:04-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGMIC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Middle Income Countries',
'observation_start': '1976-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:55:17-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGLAC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Developing Countries in Latin America and Caribbean',
'observation_start': '1960-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:39-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups. A developing nation is defined as one which falls within the lower or middle income bracket.\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGSSA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Developing Countries in Sub-Saharan Africa',
'observation_start': '1981-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:37-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups. A developing nation is defined as one which falls within the lower or middle income bracket.\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGEAS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices: All Income Levels for East Asia and Pacific',
'observation_start': '1987-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:39-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGECS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices: All Income Levels for Europe and Central Asia',
'observation_start': '1992-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:39-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'DRBKRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Durable goods: Recreational books (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:34-05',
'popularity': 6,
'group_popularity': 6,
'notes': 'BEA Account Code: DRBKRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSERRD3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Services (implicit price deflator)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:48:37-05',
'popularity': 6,
'group_popularity': 6,
'notes': 'BEA Account Code: DSERRD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DEBKRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Durable goods: Educational books (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:49:02-05',
'popularity': 6,
'group_popularity': 6,
'notes': 'BEA Account Code: DEBKRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSERRD3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Personal consumption expenditures: Services (implicit price deflator)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:50-05',
'popularity': 1,
'group_popularity': 6,
'notes': 'BEA Account Code: DSERRD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DAOPRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Nondurable goods: Alcoholic beverages purchased for off-premises consumption (chain-type quantity index)',
'observation_start': '1933-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:48:45-05',
'popularity': 6,
'group_popularity': 6,
'notes': 'BEA Account Code: DAOPRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02CAQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Canada',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:19:44-06',
'popularity': 1,
'group_popularity': 6,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02CAA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Canada',
'observation_start': '1960-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:37:04-06',
'popularity': 1,
'group_popularity': 6,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: CAN\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02AUA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Australia',
'observation_start': '1960-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:37:04-06',
'popularity': 1,
'group_popularity': 6,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: AUS\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02AUQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Australia',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:20:53-06',
'popularity': 1,
'group_popularity': 6,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: AUS\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP03USA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Government Final Consumption Expenditure for United States',
'observation_start': '1960-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-10-12 11:53:00-05',
'popularity': 1,
'group_popularity': 6,
'notes': 'OECD Descriptor ID: NAEXKP03\nOECD unit ID: IDX\nOECD country ID: USA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP03USQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Government Final Consumption Expenditure for United States',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:03:39-06',
'popularity': 1,
'group_popularity': 6,
'notes': 'OECD Descriptor ID: NAEXKP03\nOECD unit ID: IDX\nOECD country ID: USA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'APU0000706111',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Chicken, Fresh, Whole (Cost per Pound/453.6 Grams) in U.S. City Average',
'observation_start': '1980-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:04-05',
'popularity': 61,
'group_popularity': 61,
'notes': 'Whole, fresh, boiler/fryer chickens. Includes organic, non-organic as well as other descriptive claims.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'A824RD3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Government consumption expenditures and gross investment: Federal: National defense (implicit price deflator)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:52:43-05',
'popularity': 6,
'group_popularity': 7,
'notes': 'BEA Account Code: A824RD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'RPPALLUSNMP',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Regional Price Parities: All Items: Nonmetropolitan Portion for United States',
'observation_start': '2008-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index',
'units_short': 'Index',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-12-12 07:42:02-06',
'popularity': 21,
'group_popularity': 21,
'notes': 'Regional price parities (RPPs) are regional price levels expressed as a percentage of the overall national price level for a given year. The price levels are determined by the average prices paid by consumers for the mix of goods and services consumed in each region. Taking the ratio of RPPs shows the difference in price levels across regions.\n\nThe term "all items" refers to all the detailed consumption goods and services used in the estimation of the RPPs. \n\nNonmetropolitan portion consists of all counties in a state or the US that are outside of metropolitan statistical areas. \n\nFor more information about this release go to http://www.bea.gov/newsreleases/regional/rpp/rpp_newsrelease.htm or http://www.bea.gov/regional/methods.cfm.'},
{'id': 'A824RD3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Government consumption expenditures and gross investment: Federal: National defense (implicit price deflator)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:53:36-05',
'popularity': 1,
'group_popularity': 7,
'notes': 'BEA Account Code: A824RD\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': '00XAP0GBM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for United Kingdom',
'observation_start': '2000-12-01',
'observation_end': '2020-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2020-12-17 07:28:15-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCEZ19M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Euro Area (19 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCLTM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Lithuania',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0ROM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Romania',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFEU28M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for European Union (28 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2020-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2020-03-26 16:26:06-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\r\n\r\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\r\n\r\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\r\n\r\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\r\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\r\n\r\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0FRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for France',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCNLM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Netherlands',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCBEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Belgium',
'observation_start': '1998-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:48-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCATM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Austria',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:06:08-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0EZCCM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Euro Area (EA11-1999, EA12-2001, EA13-2007, EA15-2008, EA16-2009, EA17-2011, EA18-2014, EA19-2015, EA20-2023)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0TRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Administered Prices for Turkey',
'observation_start': '2001-01-01',
'observation_end': '2016-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2016-05-18 10:20:27-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0EZ19M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Euro Area (19 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\r\n\r\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\r\n\r\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\r\n\r\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\r\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\r\n\r\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0GRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Greece',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:06:12-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFITM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Italy',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0PLM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Poland',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0NLM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Netherlands',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0EU272020M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for European Union (27 Countries from 2020)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': "The Harmonized Index of Consumer Prices category All-Items Excluding Administered Prices (00XAP) excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator's decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source here (https://ec.europa.eu/eurostat/web/hicp/methodology).\n\nCopyright, European Union, 1995-2016 (https://ec.europa.eu/info/legal-notice_en#copyright)."},
{'id': '00XAP0LTM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Lithuania',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCITM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Italy',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0IEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Ireland',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCIEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Ireland',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCPLM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Poland',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0EU28M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for European Union (28 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2020-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-02-22 07:08:17-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\r\n\r\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\r\n\r\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\r\n\r\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\r\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\r\n\r\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPMCHM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Switzerland',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:36-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Mainly Administered Prices (00XAPMAIN)" excludes Mainly Administered Prices (APMAIN) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0CHM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Switzerland',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:44-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCCHM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Switzerland',
'observation_start': '2004-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:48-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCSKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Slovakia',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCDEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Germany',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:06:08-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPMCZM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Czech Republic',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:36-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Mainly Administered Prices (00XAPMAIN)" excludes Mainly Administered Prices (APMAIN) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0CZM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Czech Republic',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:44-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFFIM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Finland',
'observation_start': '2016-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCFIM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Finland',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0SKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Slovakia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0LUM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Luxembourg',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0FIM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Finland',
'observation_start': '2016-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0ITM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Italy',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCTRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Turkey',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFMTM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Malta',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCHUM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Hungary',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCLVM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Latvia',
'observation_start': '1997-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0MTM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Malta',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFTRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Turkey',
'observation_start': '2001-01-01',
'observation_end': '2016-04-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2016-05-18 10:20:24-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCGBM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for United Kingdom',
'observation_start': '1996-01-01',
'observation_end': '2020-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2020-12-17 07:20:29-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCROM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Romania',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:06:12-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFCHM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Switzerland',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCEUCCM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for European Union',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0BGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Bulgaria',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:44-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPMBGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Bulgaria',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:36-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Mainly Administered Prices (00XAPMAIN)" excludes Mainly Administered Prices (APMAIN) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFFRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for France',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0LVM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Latvia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCBGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Bulgaria',
'observation_start': '1996-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:48-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFLTM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Lithuania',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFGBM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for United Kingdom',
'observation_start': '2000-12-01',
'observation_end': '2020-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2020-12-17 07:28:12-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCISM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Iceland',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFLVM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Latvia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0CYM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Cyprus',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:44-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPMCYM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Cyprus',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:36-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Mainly Administered Prices (00XAPMAIN)" excludes Mainly Administered Prices (APMAIN) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFDEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Germany',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFSKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Slovakia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFISM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Iceland',
'observation_start': '2001-01-01',
'observation_end': '2016-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2016-05-18 10:20:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0ISM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Administered Prices for Iceland',
'observation_start': '2001-01-01',
'observation_end': '2016-03-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2016-05-18 10:20:29-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0SEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Sweden',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCEZ17M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Euro area (17 countries) (DISCONTINUED)',
'observation_start': '1996-01-01',
'observation_end': '2015-12-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2005=100',
'units_short': 'Index 2005=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2016-01-22 17:51:11-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFBGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Bulgaria',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCNOM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Norway',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFESM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Spain',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCESM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Spain',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCCYM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Cyprus',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:48-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFEZ19M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Euro Area (19 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\r\n\r\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\r\n\r\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\r\n\r\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\r\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\r\n\r\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCGRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Greece',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCCZM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Czech Republic',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:48-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCDKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Denmark',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:48-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0PTM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Portugal',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCMTM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Malta',
'observation_start': '1996-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFGRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Greece',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCPTM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Portugal',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0EUCCM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for European Union',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFPTM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Portugal',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFNLM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Netherlands',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCEEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Estonia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCHRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Croatia',
'observation_start': '1998-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0EEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Estonia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:44-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0ATM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Austria',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:44-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPMATM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Austria',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Mainly Administered Prices (00XAPMAIN)" excludes Mainly Administered Prices (APMAIN) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFIEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Ireland',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFSEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Sweden',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPMDEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Germany',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:36-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Mainly Administered Prices (00XAPMAIN)" excludes Mainly Administered Prices (APMAIN) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0DEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Germany',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:44-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCEZCCM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Euro Area (EA11-1999, EA12-2001, EA13-2007, EA15-2008, EA16-2009, EA17-2011, EA18-2014, EA19-2015, EA20-2023)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0SIM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Slovenia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFCZM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Czech Republic',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0NOM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Norway',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFBEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Belgium',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0HRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Croatia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0ESM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Spain',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCEU27M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for European Union (27 countries) (DISCONTINUED)',
'observation_start': '1996-01-01',
'observation_end': '2015-12-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2005=100',
'units_short': 'Index 2005=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2016-01-22 17:51:11-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0DKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Denmark',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:44-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFEU272020M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for European Union (27 Countries from 2020)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': "The Harmonized Index of Consumer Prices category All-Items excluding Fully Administered Prices (00XAPFULL) excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator's decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source here (https://ec.europa.eu/eurostat/web/hicp/methodology).\n\nCopyright, European Union, 1995-2016 (https://ec.europa.eu/info/legal-notice_en#copyright)."},
{'id': '00XALCE3CCM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for European Economic Area (EEA18-2004, EEA28-2006, EEA30)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:48-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFDKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Denmark',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCEU28M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for European Union (28 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2020-01-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2020-02-21 07:13:59-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFROM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Romania',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCSIM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Slovenia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCSEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Sweden',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPMBEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Belgium',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:36-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Mainly Administered Prices (00XAPMAIN)" excludes Mainly Administered Prices (APMAIN) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0BEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Belgium',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:44-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFCYM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Cyprus',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFLUM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Luxembourg',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFEEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Estonia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAP0HUM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Mainly Administered Prices for Hungary',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items Excluding Administered Prices (00XAP)" excludes Administered Prices (AP) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFEUCCM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for European Union',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFHRM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Croatia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFEZCCM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Euro Area (EA11-1999, EA12-2001, EA13-2007, EA15-2008, EA16-2009, EA17-2011, EA18-2014, EA19-2015, EA20-2023)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFNOM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Norway',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFHUM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Hungary',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCEZ18M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Euro Area (18 countries)',
'observation_start': '2000-12-01',
'observation_end': '2022-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2022-12-16 07:14:36-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFPLM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Poland',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFATM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Austria',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XAPFSIM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: All Items Excluding Fully Administered Prices for Slovenia',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "All-Items excluding Fully Administered Prices (00XAPFULL)" excludes Fully Administered Prices (APFULL) from the HICP for All-Items.\n\nFor a Harmonized Index of Consumer Prices (HICPs) to be included in the Administered Price (AP) category, more than 50% of its underlying items must be either directly set, or heavily influenced by a governmental body or regulator (whether national, regional, or local). There are two types of Administered Prices as defined by Eurostat. Fully Administered Prices (APFULL) includes those that are directly set by the government. Examples include local public transportation charges, education fees, theater tickets, waste collection, childcare, and fees for administrative documents. Mainly Administered Prices (APMAIN) covers the prices of goods and services over which the government or regulator has significant influence. These may include prices that require approval or permission by national regulatory authorities for their change. The influence of the national regulator\'s decisions could be direct (on retail prices) or indirect (via wholesale prices). However, the regulator must have a significant influence on the consumer price. This index does not provide an exact measure of the development of administered and non-administered prices.\n\nFor some European Union Member States, HICPs items considered for inclusion in the administered prices subcategory are supplied by National Statistical Institutes, while with other European Union Member States, these are provided by National Central Banks. Eurostat, the Directorate General for Economic and Financial Affairs, and the European Central Bank verify final classification for all countries.\n\nInformation provided in the notes relating to Administered Prices HICP classifications can be found from the source at:\nhttp://ec.europa.eu/eurostat/web/hicp/methodology/hicp-administered-prices.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': '00XALCEU272020M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for European Union (27 Countries from 2020)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category Overall Index Excluding Alcohol and Tobacco (00XALCOTOB) is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source here (https://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm).\n\nCopyright, European Union, 1995-2016 (https://ec.europa.eu/info/legal-notice_en#copyright).'},
{'id': '00XALCLUM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Overall Index Excluding Alcohol and Tobacco for Luxembourg',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'The Harmonized Index of Consumer Prices category "Overall Index Excluding Alcohol and Tobacco (00XALCOTOB)" is a classification of nondurable goods, semi-durable goods, durable goods, services, and energy that includes Bread and Cereals (01.1.1), Meat (01.1.2), Fish (01.1.3), Milk, Cheese, and Eggs (01.1.4), Oils and Fats (01.1.5), Fruit (01.1.6), Vegetables (01.1.7), Sugar, Jam, Honey, Chocolate, and Confectionery (01.1.8), Food Products, Not Elsewhere Classified (01.1.9), Coffee, Tea, and Cocoa (01.2.1), Mineral Waters, Soft Drinks, and Fruit and Vegetable Juices (01.2.2), Clothing Materials (03.1.1), Garments (03.1.2), Other Articles of Clothing and Clothing Accessories (03.1.3), Cleaning, Repair, and Hire of Clothing (03.1.4), Shoes and Other Footwear including Repair and Hire of Footwear (03.2.1/2), Actual Rentals Paid by Tenants including Other Actual Rentals (04.1.1/2), Materials for the Maintenance and Repair of the Dwelling (04.3.1), Services for the Maintenance and Repair of the Dwelling (04.3.2), Water Supply (04.4.1), Refuse Collection (04.4.2), Sewerage Collection (04.4.3), Other Services Relating to the Dwelling, Not Elsewhere Classified (04.4.4), Electricity (04.5.1), Gas (04.5.2), Liquid Fuels (04.5.3), Solid Fuels (04.5.4), Heat Energy (04.5.5), Furniture and Furnishings (05.1.1), Carpets and Other Floor Coverings (05.1.2), Repair of Furniture, Furnishings, and Floor Coverings (05.1.3), Household Textiles (05.2), Major Household Appliances whether Electric or not and Small Electric Household Appliances (05.3.1/2), Repair of Household Appliances (05.3.3), Glassware, Tableware, and Household Utensils (05.4), Major Tools and Equipment and Small Tools and Miscellaneous Accessories (05.5.1/2), Nondurable Household Goods (05.6.1), Domestic Services and Household Services (05.6.2), Pharmaceutical Products (06.1.1), Other Medical Products, Therapeutic Appliances and Equipment (06.1.2/3), Medical and Paramedical Services (06.2.1/3), Dental Services (06.2.2), Hospital Services (06.3), Motor Cars (07.1.1), Motor Cycles, Bicycles, and Animal Drawn Vehicles (07.1.2/3/4), Spare Parts and Accessories for Personal Transport Equipment (07.2.1), Fuels and Lubricants for Personal Transport Equipment (07.2.2), Maintenance and Repair of Personal Transport Equipment (07.2.3), Other Services in respect of Personal Transport Equipment (07.2.4), Passenger Transport by Railway (07.3.1), Passenger Transport by Road (07.3.2), Passenger Transport by Air (07.3.3), Passenger Transport by Sea and Inland Waterway (07.3.4), Combined Passenger Transport (07.3.5), Other Purchased Transport Services (07.3.6), Postal Services (08.1), Telephone and Telefax Equipment and Telephone and Telefax Services (08.2/3), Equipment for the Reception, Recording, and Reproduction of Sound and Pictures (09.1.1), Photographic and Cinematographic Equipment and Optical Instruments (09.1.2), Information Processing Equipment (09.1.3), Recording Media (09.1.4), Repair of Audio-Visual, Photographic and Information Processing Equipment (09.1.5), Major Durables for Indoor and Outdoor Recreation including Musical Instruments (09.2.1/2), Maintenance and Repair of Other Major Durables for Recreation and Culture (09.2.3), Games, Toys, and Hobbies (09.3.1), Equipment for Sport, Camping, and Open-Air Recreation (09.3.2), Gardens, Plants, and Flowers (09.3.3), Pets and Related Products including Veterinary and Other Services for Pets (09.3.4/5), Recreational and Sporting Services (09.4.1), Cultural Services (09.4.2), Books (09.5.1), Newspapers and Periodicals (09.5.2), Miscellaneous Printed Matter, Stationery, and Drawing Materials (09.5.3/4), Package Holidays (09.6), Pre-Primary and Primary, Secondary, Post-Secondary Non-Tertiary, Tertiary Education, and Education not definable by Level (10.X), Restaurants, cafés, and the Like (11.1.1), Canteens (11.1.2), Accommodation Services (11.2), Hairdressing Salons and Personal Grooming Establishments (12.1.1), Electric Appliances for Personal Care and Other Appliances, Articles, and Products for Personal Care (12.1.2/3), Jewelry, Clocks, and Watches (12.3.1), Other Personal Effects (12.3.2), Social Protection (12.4), Insurance connected with the Dwelling (12.5.2), Insurance connected with Health (12.5.3), Insurance connected with Transport (12.5.4), Other Insurance (12.5.5) Other Financial Services, Not Elsewhere Classified (12.6.2), and Other Services, Not Elsewhere Classified (12.7).\n\nInformation provided in the notes pertaining to Special Aggregates HICP classifications can be found from the source at: http://ec.europa.eu/eurostat/cache/metadata/en/prc_hicp_esms.htm.\n\nCopyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0561MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Durable Household Goods for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:07-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP07120714MI15XKM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Motor Cycles, Bicycles, and Animal Drawn Vehicles for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:58-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0953MEMI150954M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Miscellaneous Printed Matter, Stationery, and Drawing Materials for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:04-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP061MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Medical Products, Appliances and Equipment for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:32-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0111MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Bread and Cereals for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGSST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Small States',
'observation_start': '1980-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at https://datahelpdesk.worldbank.org/knowledgebase/articles/906519\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'CP0314MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Cleaning, Repair and Hire of Clothing for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:49-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FOODMEMI15PM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Processed Food Including Alcohol and Tobacco for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:21-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVEA20MI15TRAM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Transport for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:07:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0953XKMI150954M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Miscellaneous Printed Matter, Stationery, and Drawing Materials for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:14-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVEA20MI15COMM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Communication for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:08:52-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0118MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Sugar, Jam, Honey, Chocolate and Confectionery for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:07-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0114MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Milk, Cheese and Eggs for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:26-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP094MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Recreational and Cultural Services for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:32-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1231MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Jewellery, Clocks and Watches for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'ITALOCOPCORIXOBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Leading Indicators OECD: Component Series: Consumer Prices: Original Series for Italy',
'observation_start': '1960-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:30:42-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'OECD Descriptor ID: LOCOPCOR\nOECD unit ID: IDX\nOECD country ID: ITA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CP0562MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Domestic Services and Household Services for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:05-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP11MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Restaurants and Hotels for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:53-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0314MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Cleaning, Repair and Hire of Clothing for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:49-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP082XKMI15083M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Telephone and Telefax Equipment and Services for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:56-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP05MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Furnishings, Household Equipment and Routine Household Maintenance for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:58-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP01MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Food and Non-Alcoholic Beverages for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:56-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0931MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Games, Toys and Hobbies for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:29-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP05MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Furnishings, Household Equipment and Routine Household Maintenance for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:04-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0122MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Mineral Waters, Soft Drinks, Fruit and Vegetable Juices for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:57-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0722MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Fuels and Lubricants for Personal Transport Equipment for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:57-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'EDUCSPREA20MI15HLTHM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Education, Health, and Social Protection for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:33-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0732MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Passenger Transport by Road for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:10-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0941MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Recreational and Sporting Services for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:35-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0612MEMI150613M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Medical Products, Therapeutic Appliances and Equipment for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:58-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0830MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Telephone and Telefax Services for Euro Area (20 Countries)',
'observation_start': '2016-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:06-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0115MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Oils and Fats for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:24-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP092MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Major Durables for Recreation and Culture for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:50-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0113MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Fish and Seafood for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:28-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0933MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Gardens, Plants and Flowers for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:24-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP012MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Alcoholic Beverages for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:56-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP072MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Operation of Personal Transport Equipment for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:15-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDEA20MI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:26-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDDALMI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Durables Only for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:26-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP051MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Furniture and Furnishings, Carpets and Other Floor Coverings for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:54-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0511MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Furniture and Furnishings for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:08-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP062MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Out-Patient Services for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP071MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Purchase of Vehicles for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:59-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP092MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Major Durables for Recreation and Culture for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:50-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1232MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Personal Effects for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'ELCXKMI15GASM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Electricity, Gas, Solid Fuels and Heat Energy for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:14-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVHOAMEMI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Package Holidays and Accommodation for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:07:24-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0533MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Repair of Household Appliances for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:16-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0721MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Spares Parts and Accessories for Personal Transport Equipment for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:15-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0912MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Photographic and Cinematographic Equipment and Optical Instruments for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:17-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FRALOCOPCORIXOBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Leading Indicators OECD: Component Series: Consumer Prices: Original Series for France',
'observation_start': '1990-01-01',
'observation_end': '2023-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-01-12 14:32:42-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'OECD Descriptor ID: LOCOPCOR\nOECD unit ID: IDX\nOECD country ID: FRA\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'CP045MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Electricity, Gas and Other Fuels for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:12-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0119MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Food Products N.e.c. for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:05-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'ELCALMI15GASM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Electricity, Gas, Solid Fuels and Heat Energy for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:14-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP127MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Services N.e.c. for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:33-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP043MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Maintenance and Repair of the Dwelling for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0612XKMI150613M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Medical Products, Therapeutic Appliances and Equipment for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:32-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP01MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Food and Non-Alcoholic Beverages for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:56-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP03MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Clothing and Footwear for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP04MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Housing, Water, Electricity, Gas and Other Fuels for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:11-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SVNLOCOPCORIXOBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Leading Indicators OECD: Component series: Consumer prices: Original series for Slovenia',
'observation_start': '1980-01-01',
'observation_end': '2022-11-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2022-12-28 15:43:47-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'OECD descriptor ID: LOCOPCOR OECD unit ID: IXOB OECD country ID: SVN All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'SERVHOAXKMI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Package Holidays and Accommodation for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:07:24-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP093MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Recreational Items and Equipment, Gardens and Pets for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:22-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FUELMI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Liquid Fuels and Fuels and Lubricants for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:35-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP01MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Food and Non-Alcoholic Beverages for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:55-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FINLOCOPCORIXOBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Leading Indicators OECD: Component series: Consumer prices: Original series for Finland',
'observation_start': '1960-01-01',
'observation_end': '2022-10-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2022-12-28 15:53:44-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'OECD descriptor ID: LOCOPCOR OECD unit ID: IXOB OECD country ID: FIN All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'NRGNPEA20MI15FOODM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Energy and Unprocessed Food for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:02-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP04MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Housing, Water, Electricity, Gas and Other Fuels for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:11-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP04MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Housing, Water, Electricity, Gas and Other Fuels for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:11-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP051MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Furniture and Furnishings, Carpets and Other Floor Coverings for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:54-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'NORLOCOPCORIXOBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Leading Indicators OECD: Component series: Consumer prices: Original series for Norway',
'observation_start': '1960-01-01',
'observation_end': '2022-10-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2022-12-28 15:46:41-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'OECD descriptor ID: LOCOPCOR OECD unit ID: IXOB OECD country ID: NOR All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'SERVHOAALMI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Package Holidays and Accommodation for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:07:24-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1253MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Insurance Connected with Health for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:29-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1252MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Insurance Connected with the Dwelling for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0953ALMI150954M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Miscellaneous Printed Matter, Stationery, and Drawing Materials for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:16-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0313MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Articles of Clothing and Clothing Accessories for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1254MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Insurance Connected with Transport for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:27-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'NRGSEA20MI15FOODM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Energy and Seasonal Food for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:01-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0722MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Fuels and Lubricants for Personal Transport Equipment for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:24-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FOODXKMI15PM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Processed Food Including Alcohol and Tobacco for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:16-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FOODALMI15PM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Processed Food Including Alcohol and Tobacco for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:21-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP092MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Major Durables for Recreation and Culture for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:50-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0513MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Repair of Furniture, Furnishings and Floor Coverings for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:54-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0621EA20MI150623M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Medical Services; Paramedical Services for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:29-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0444MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Services Relating to the Dwelling N.e.c. for Montenegro',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:28-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP12MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Miscellaneous Goods and Services for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:33-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1211MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Hairdressing Salons and Personal Grooming Establishments for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:49-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP054MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Glassware, Tableware and Household Utensils for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:49-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0313MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Articles of Clothing and Clothing Accessories for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1211MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Hairdressing Salons and Personal Grooming Establishments for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:50-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP093MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Recreational Items and Equipment, Gardens and Pets for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:22-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP02MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Alcoholic Beverages, Tobacco and Narcotics for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:35-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP09MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Recreation and Culture for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:12-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1211MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Hairdressing Salons and Personal Grooming Establishments for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:50-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0313MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Articles of Clothing and Clothing Accessories for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP093MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Recreational Items and Equipment, Gardens and Pets for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:22-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0912MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Photographic and Cinematographic Equipment and Optical Instruments for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:17-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP126MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Financial Services N.e.c. for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:23-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0314MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Cleaning, Repair and Hire of Clothing for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:49-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FUELMI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Liquid Fuels and Fuels and Lubricants for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:36-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP043MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Maintenance and Repair of the Dwelling for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0952MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Newspapers and Periodicals for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:17-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0118MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Sugar, Jam, Honey, Chocolate and Confectionery for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:07-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0118MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Sugar, Jam, Honey, Chocolate and Confectionery for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:07-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP07120714MI15ALM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Motor Cycles, Bicycles, and Animal Drawn Vehicles for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0723MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Maintenance and Repair of Personal Transport Equipment for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:22-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0723MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Maintenance and Repair of Personal Transport Equipment for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:22-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP05MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Furnishings, Household Equipment and Routine Household Maintenance for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:04-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP123MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Personal Effects N.e.c. for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP043MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Maintenance and Repair of the Dwelling for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0722MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Fuels and Lubricants for Personal Transport Equipment for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:57-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1212ALMI151213M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Electrical Appliances for Personal Care; Other Appliances, Articles and Products for Personal Care for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:53-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGLDC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Least Developed Countries',
'observation_start': '1986-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at https://datahelpdesk.worldbank.org/knowledgebase/articles/906519\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGARB',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for the Arab World',
'observation_start': '1973-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at https://datahelpdesk.worldbank.org/knowledgebase/articles/906519\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'CP056MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Goods and Services for Routine Household Maintenance for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:04-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGCSS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Caribbean Small States',
'observation_start': '1967-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:56:58-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at https://datahelpdesk.worldbank.org/knowledgebase/articles/906519\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'IGDNDEA20MI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Non-Durables Only for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FROOPPMI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Frequent Out-OF-Pocket Purchases for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:52-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0724MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Services in Respect of Personal Transport Equipment for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:16-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1212XKMI151213M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Electrical Appliances for Personal Care; Other Appliances, Articles and Products for Personal Care for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGOSS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Other Small States',
'observation_start': '1981-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at https://datahelpdesk.worldbank.org/knowledgebase/articles/906519\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'CP044MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Water Supply and Miscellaneous Services Relating to the Dwelling for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:28-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0122MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Mineral Waters, Soft Drinks, Fruit and Vegetable Juices for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:57-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0722MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Fuels and Lubricants for Personal Transport Equipment for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:57-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0934EA20MI150935M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Pets and Related Products; Veterinary and Other Services for Pets for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:23-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0921XKMI150922M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Major Durables for Indoor and Outdoor Recreation Including Musical Instruments for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0313MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Articles of Clothing and Clothing Accessories for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1212MEMI151213M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Electrical Appliances for Personal Care; Other Appliances, Articles and Products for Personal Care for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:47-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0932MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Equipment for Sport, Camping and Open-Air Recreation for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0118MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Sugar, Jam, Honey, Chocolate and Confectionery for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:07-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP093MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Recreational Items and Equipment, Gardens and Pets for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:22-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP044MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Water Supply and Miscellaneous Services Relating to the Dwelling for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:28-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CZELOCOPCORIXOBM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Leading Indicators OECD: Component series: Consumer prices: Original series for the Czech Republic',
'observation_start': '1995-01-01',
'observation_end': '2022-10-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2022-12-28 15:55:37-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'OECD descriptor ID: LOCOPCOR OECD unit ID: IXOB OECD country ID: CZE All OECD data should be cited as follows: OECD,"Main Economic Indicators - complete database"Main Economic Indicators(database)http://dx.doi.org/10.1787/data-00052-en(Accessed on date)Copyright, 2016, OECD. Reprinted with permission.'},
{'id': 'CP04MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Housing, Water, Electricity, Gas and Other Fuels for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:11-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0721MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Spares Parts and Accessories for Personal Transport Equipment for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:15-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0432MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services for the Maintenance and Repair of the Dwelling for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP044MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Water Supply and Miscellaneous Services Relating to the Dwelling for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:28-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP07120714MI15EA20M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Motor Cycles, Bicycles, and Animal Drawn Vehicles for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP091MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Audio-Visual, Photographic and Information Processing Equipment for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVHOAEA20MI15RECM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Package Holidays and Accommodation for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:07:24-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP043MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Maintenance and Repair of the Dwelling for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:42-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDNDXKMI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Non-Durables Only for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:24-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FUELMI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Liquid Fuels and Fuels and Lubricants for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0432MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services for the Maintenance and Repair of the Dwelling for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVXHOAALMI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Recreation and Personal Care, Excluding Package Holidays and Accommodation for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:07:50-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP01MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Food and Non-Alcoholic Beverages for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:56-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0932MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Equipment for Sport, Camping and Open-Air Recreation for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:26-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0911MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Equipment for the Reception, Recording and Reproduction of Sound and Picture for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:00-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0921MEMI150922M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Major Durables for Indoor and Outdoor Recreation Including Musical Instruments for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP05MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Furnishings, Household Equipment and Routine Household Maintenance for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:04-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVXHOAEA20MI15RECM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Recreation and Personal Care, Excluding Package Holidays and Accommodation for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:07:49-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP092MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Major Durables for Recreation and Culture for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:50-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0531EA20MI150532M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Major Household Appliances Whether Electric or Not and Small Electric Household Appliances for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:19-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP044MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Water Supply and Miscellaneous Services Relating to the Dwelling for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:28-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0915MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Repair of Audio-Visual, Photographic and Information Processing Equipment for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDNDALMI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Non-Durables Only for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDNDMEMI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Non-Durables Only for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:09:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0911MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Equipment for the Reception, Recording and Reproduction of Sound and Picture for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:00-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP082EA20MI15083M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Telephone and Telefax Equipment and Services for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0513MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Repair of Furniture, Furnishings and Floor Coverings for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:54-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP051MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Furniture and Furnishings, Carpets and Other Floor Coverings for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:54-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVEA20MI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Recreation, Including Repairs and Personal Care for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:07:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0431MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Materials for the Maintenance and Repair of the Dwelling for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:59-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP055MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Tools and Equipment for House and Garden for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0915MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Repair of Audio-Visual, Photographic and Information Processing Equipment for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:41-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1212EA20MI151213M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Electrical Appliances for Personal Care; Other Appliances, Articles and Products for Personal Care for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:10:48-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0444MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Services Relating to the Dwelling N.e.c. for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:28-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0612EA20MI150613M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Medical Products, Therapeutic Appliances and Equipment for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:12:33-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0432MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services for the Maintenance and Repair of the Dwelling for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:13:43-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0921EA20MI150922M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Major Durables for Indoor and Outdoor Recreation Including Musical Instruments for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0921ALMI150922M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Major Durables for Indoor and Outdoor Recreation Including Musical Instruments for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FPCPITOTLZGLIC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Low Income Countries',
'observation_start': '1981-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:55:19-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGHPC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Heavily Indebted Poor Countries',
'observation_start': '1981-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at https://datahelpdesk.worldbank.org/knowledgebase/articles/906519\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGOEC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for High Income OECD Countries',
'observation_start': '1960-01-01',
'observation_end': '2015-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2016-06-13 13:12:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGUMC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Upper Middle Income Countries',
'observation_start': '1975-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGLMC',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Lower Middle Income Countries',
'observation_start': '1980-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGLMY',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Low and Middle Income Countries',
'observation_start': '1977-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-04-16 13:53:35-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGFCS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Countries with Fragile and Conflict Affected Situations',
'observation_start': '1991-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://www.worldbank.org/en/topic/fragilityconflictviolence/overview\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGSSF',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices: All Income Levels for Sub-Saharan Africa',
'observation_start': '1975-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGPSS',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Pacific Island Small States',
'observation_start': '2000-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at https://datahelpdesk.worldbank.org/knowledgebase/articles/906519\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGCEB',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Central Europe and the Baltics',
'observation_start': '1991-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:40-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at https://datahelpdesk.worldbank.org/knowledgebase/articles/906519\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'FPCPITOTLZGECA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Inflation, consumer prices for Developing Countries in Europe and Central Asia',
'observation_start': '1994-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Percent',
'units_short': '%',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-07-02 13:58:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\n\nNations that are included in this data series are listed at http://data.worldbank.org/about/country-and-lending-groups. A developing nation is defined as one which falls within the lower or middle income bracket.\n\nSource Indicator: FP.CPI.TOTL.ZG'},
{'id': 'B1008A3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real farm output: Farm products consumed on farms (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-10-02 13:13:39-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B1008A\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP03AUA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Government Final Consumption Expenditure for Australia',
'observation_start': '1960-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:37:04-06',
'popularity': 1,
'group_popularity': 8,
'notes': 'OECD Descriptor ID: NAEXKP03\nOECD unit ID: IDX\nOECD country ID: AUS\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP03AUQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Government Final Consumption Expenditure for Australia',
'observation_start': '1960-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:20:52-06',
'popularity': 1,
'group_popularity': 8,
'notes': 'OECD Descriptor ID: NAEXKP03\nOECD unit ID: IDX\nOECD country ID: AUS\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'B652RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real imports of goods: Consumer goods, except automotive (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:51:29-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B652RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B642RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real exports of goods: Consumer goods, except automotive (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:54-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B642RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'A2003A3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real farm output: Intermediate goods and services consumed (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-10-02 13:13:50-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: A2003A\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'A753RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real net fixed investment: Nonresidential: Consumption of fixed capital (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-10-02 13:11:13-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'BEA Account Code: A753RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02DEQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Germany',
'observation_start': '1970-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:15:26-06',
'popularity': 1,
'group_popularity': 5,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: DEU\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02DEA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Germany',
'observation_start': '1991-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-09-12 20:35:16-05',
'popularity': 1,
'group_popularity': 5,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: DEU\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02NOQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Norway',
'observation_start': '1978-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-12-12 14:45:51-06',
'popularity': 1,
'group_popularity': 5,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: NOR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02NOA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Norway',
'observation_start': '1978-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-12-12 15:19:15-06',
'popularity': 1,
'group_popularity': 5,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: NOR\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DFFDRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Nondurable goods: Food produced and consumed on farms (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:17-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DFFDRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'APU0000704111',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: Bacon, Sliced (Cost per Pound/453.6 Grams) in U.S. City Average',
'observation_start': '1980-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:04-05',
'popularity': 60,
'group_popularity': 60,
'notes': 'Pre-packaged, thick sliced, regular sliced or thin sliced pork bacon, regardless of process state.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'APU0000FC3101',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: All Uncooked Beef Steaks (Cost per Pound/453.6 Grams) in U.S. City Average',
'observation_start': '1998-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:03-05',
'popularity': 60,
'group_popularity': 60,
'notes': 'Steaks other than round or sirloin, regardless of cut or grade. Includes bone-in, boneless, organic, non-organic, fresh, and frozen.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'APU0000FN1101',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Average Price: All Soft Drinks (Cost per 2 Liters/67.6 Ounces) in U.S. City Average',
'observation_start': '2018-04-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'U.S. Dollars',
'units_short': 'U.S. $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-11 07:34:05-05',
'popularity': 60,
'group_popularity': 60,
'notes': 'All soft drinks sold in a 2 liter bottle.\n\nAverage consumer prices are calculated for household fuel, motor fuel, and food items from prices collected for the Consumer Price Index (CPI). Average prices are best used to measure the price level in a particular month, not to measure price change over time. It is more appropriate to use CPI index values for the particular item categories to measure price change.\n\nPrices, except for electricity, are collected monthly by BLS representatives in the 75 urban areas priced for the CPI. Electricity prices are collected for the BLS for the same 75 areas on a monthly basis by the Department of Energy using mail questionnaires. All fuel prices include applicable Federal, State, and local taxes; prices for natural gas and electricity also include fuel and purchased gas adjustments.\n\nFor more information, please visit the Bureau of Labor Statistics (https://www.bls.gov/cpi/factsheets/average-prices.htm).'},
{'id': 'B691RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real exports of goods: Consumer goods, except automotive: Nondurable goods (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:51:26-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B691RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B652RA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real imports of goods: Consumer goods, except food and automotive (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:53:29-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B652RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B697RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real imports of goods: Consumer goods, except automotive: Durable goods (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:51:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B697RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B698RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real imports of goods: Consumer goods, except automotive: Nondurable goods (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:51:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B698RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B642RA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real exports of goods: Consumer goods, except food and automotive (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:53:30-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B642RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B690RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real exports of goods: Consumer goods, except automotive: Durable goods (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:51:26-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B690RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B1027A3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real housing output: Intermediate goods and services consumed (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-10-02 13:13:38-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B1027A\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'A262RA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real consumption of fixed capital (chain-type quantity index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:54:09-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: A262RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'A262RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real consumption of fixed capital (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:54:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: A262RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DGDSRA3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Goods (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:28-05',
'popularity': 3,
'group_popularity': 4,
'notes': 'BEA Account Code: DGDSRA\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B697RA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real imports of goods: Consumer goods, except food and automotive: Durable goods (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:53:26-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B697RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B690RA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real exports of goods: Consumer goods, except food and automotive: Durable goods (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:53:27-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B690RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B698RA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real imports of goods: Consumer goods, except food and automotive: Nondurable goods (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:53:25-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B698RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'B691RA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real exports of goods: Consumer goods, except food and automotive: Nondurable goods (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:53:26-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B691RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'FUELMI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Liquid Fuels and Fuels and Lubricants for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:52-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP055MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Tools and Equipment for House and Garden for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:59-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP055MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Tools and Equipment for House and Garden for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:59-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDDXKMI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Durables Only for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP055MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Tools and Equipment for House and Garden for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:59-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP082ALMI15083M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Telephone and Telefax Equipment and Services for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:56-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0735MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Combined Passenger Transport for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDDMEMI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Durables Only for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0734MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Passenger Transport by Sea and Inland Waterway for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP082MEMI15083M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Telephone and Telefax Equipment and Services for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:56-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0820MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Telephone and Telefax Equipment for Euro Area (20 Countries)',
'observation_start': '2016-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:56-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1111MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Restaurants, Cafes and the Like for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:53-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'ELCMEMI15GASM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Electricity, Gas, Solid Fuels and Heat Energy for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:52-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0734MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Passenger Transport by Sea and Inland Waterway for Montenegro',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0913MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Information Processing Equipment for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP095MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Newspapers, Books and Stationery for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:11:14-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0512MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Carpets and Other Floor Coverings for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:15:00-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP056MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Goods and Services for Routine Household Maintenance for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:58-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0736MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Purchased Transport Services for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:56-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FOODMI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Food Including Alcohol and Tobacco for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:52-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP056MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Goods and Services for Routine Household Maintenance for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:59-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP07120714MI15MEM',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Motor Cycles, Bicycles, and Animal Drawn Vehicles for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:58-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0723MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Maintenance and Repair of Personal Transport Equipment for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0122MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Mineral Waters, Soft Drinks, Fruit and Vegetable Juices for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:15:00-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP056MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Goods and Services for Routine Household Maintenance for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:58-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0724MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Services in Respect of Personal Transport Equipment for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0724MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Services in Respect of Personal Transport Equipment for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0122MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Mineral Waters, Soft Drinks, Fruit and Vegetable Juices for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:15:00-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0612ALMI150613M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Medical Products, Therapeutic Appliances and Equipment for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:58-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0721MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Spares Parts and Accessories for Personal Transport Equipment for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0724MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Other Services in Respect of Personal Transport Equipment for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP091MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Audio-Visual, Photographic and Information Processing Equipment for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP051MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Furniture and Furnishings, Carpets and Other Floor Coverings for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:59-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP091MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Audio-Visual, Photographic and Information Processing Equipment for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0721MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Spares Parts and Accessories for Personal Transport Equipment for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0912MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Photographic and Cinematographic Equipment and Optical Instruments for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP091MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Audio-Visual, Photographic and Information Processing Equipment for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDSDXKMI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Semi-Durables Only for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDSDALMI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Semi-Durables Only for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDSDMEMI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Semi-Durables Only for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0932MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Equipment for Sport, Camping and Open-Air Recreation for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0314MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Cleaning, Repair and Hire of Clothing for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:15:01-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0432MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services for the Maintenance and Repair of the Dwelling for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:15:01-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0431MI15XKM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Materials for the Maintenance and Repair of the Dwelling for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:15:01-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0932MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Equipment for Sport, Camping and Open-Air Recreation for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0431MI15ALM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Materials for the Maintenance and Repair of the Dwelling for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:15:01-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0431MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Materials for the Maintenance and Repair of the Dwelling for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:15:01-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDDEA20MI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Durables Only for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'FOODEA20MI15PM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Processed Food Including Alcohol and Tobacco for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:52-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'ELCEA20MI15GASM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Electricity, Gas, Solid Fuels and Heat Energy for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:52-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0734MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Passenger Transport by Sea and Inland Waterway for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:57-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0934XKMI150935M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Pets and Related Products; Veterinary and Other Services for Pets for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:54-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'IGDSDEA20MI15NNRGM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Non-Energy Industrial Goods, Semi-Durables Only for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0934ALMI150935M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Pets and Related Products; Veterinary and Other Services for Pets for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVXKMI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Recreation, Including Repairs and Personal Care for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:50-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVALMI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Recreation, Including Repairs and Personal Care for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0934MEMI150935M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Pets and Related Products; Veterinary and Other Services for Pets for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVMEMI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Recreation, Including Repairs and Personal Care for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP1211MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Hairdressing Salons and Personal Grooming Establishments for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:53-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0911MI15MEM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Equipment for the Reception, Recording and Reproduction of Sound and Picture for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:56-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0953EA20MI150954M',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Miscellaneous Printed Matter, Stationery, and Drawing Materials for Euro Area (20 Countries)',
'observation_start': '2000-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:54-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0912MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Photographic and Cinematographic Equipment and Optical Instruments for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0531XKMI150532M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Major Household Appliances Whether Electric or Not and Small Electric Household Appliances for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:59-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0531ALMI150532M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Major Household Appliances Whether Electric or Not and Small Electric Household Appliances for Albania',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:59-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0923MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Maintenance and Repair of Other Major Durables for Recreation and Culture for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:55-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0531MEMI150532M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Major Household Appliances Whether Electric or Not and Small Electric Household Appliances for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:59-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'CP0911MI15EA20M086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Equipment for the Reception, Recording and Reproduction of Sound and Picture for Euro Area (20 Countries)',
'observation_start': '1999-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:56-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVXHOAXKMI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Recreation and Personal Care, Excluding Package Holidays and Accommodation for Kosovo',
'observation_start': '2015-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:50-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'SERVXHOAMEMI15RECM086NEST',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Harmonized Index of Consumer Prices: Services Related to Recreation and Personal Care, Excluding Package Holidays and Accommodation for Montenegro',
'observation_start': '2014-12-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-17 07:14:51-05',
'popularity': 0,
'group_popularity': 0,
'notes': 'Copyright, European Union, 1995-2016, http://ec.europa.eu/geninfo/legal_notices_en.htm#copyright.'},
{'id': 'DGDSRA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Goods (chain-type quantity index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:49:11-05',
'popularity': 1,
'group_popularity': 4,
'notes': 'BEA Account Code: DGDSRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DGDSRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Goods (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:15-05',
'popularity': 1,
'group_popularity': 4,
'notes': 'BEA Account Code: DGDSRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'A754RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real net fixed investment: Residential: Consumption of fixed capital (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-10-02 13:11:12-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: A754RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'A264RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real gross domestic investment: Consumption of fixed capital (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:53:10-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: A264RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'COLNAGICE01IXOBSAQ',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: National Accounts Deflators: Private Consumption Expenditure Deflator: Implicit Price Deflator Total for Colombia',
'observation_start': '2005-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2023-12-12 14:45:24-06',
'popularity': 1,
'group_popularity': 1,
'notes': 'OECD Descriptor ID: NAGICE01\nOECD unit ID: IDX\nOECD country ID: COL\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'A02233USA231NNBR',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Output of Construction Materials for Domestic Consumption Value in Constant Prices for United States',
'observation_start': '1869-01-01',
'observation_end': '1919-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': '1913 Dollars',
'units_short': '1913 $',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2012-08-16 11:35:53-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'Data Represent Total Output Of Construction Materials, Less Exports And Plus Imports. Construction Materials Include (1) Nonmanufactured Commodities, Such As Lumber (Destined For Direct Use In Construction), Cross Ties, Sand And Gravel, And Crushed Stone; And (2) Manufactured Products, Such As Lumber Products, Cement, Brick, Rails, Structural Ironwork, Etc. (For Complete List Of Manufactured Products, See Source, Pp. 133-135) These Covered Commodities Include Some Which Were Classified Directly As Construction Materials, And Another Group Of "Mixed Commodities," Such As Lumber, Wrought Pipe, And Statuary And Art Goods, For Which The Proportion Allotable To Construction Materials Was Estimated. Value Estimates Exclude Costs After Production, Such As Transportation And Distribution Costs. For The Period 1869-1919, Output, Exports, And Imports Were Estimated As Follows. Estimates Of The Value Of Output Are Based Primarily On The"Census Of Manufactures", Decennially, 1869-1899, And Quinquennially, 1899- 1919. Intercensal Estimates Were Developed From State Statistical Reports For Seven States (See Source, Pp. 232-233), Figures From Governmental Agencies Such As The Bureau Of Mines, And The Department Of Agriculture, And From Trade Associations Such As The American Iron And Steel Institute (See Source, Pp. 241-242). Exports Were Compiled From Detailed Statistics In The December Issues Of The"Monthly Summary Of Foreign Commerce" For 1893-1919. For 1869, And 1889-1893, Calendar-Year Totals Were Derived From The"Quarterly Report Of The Chief Of The Bureau Of Statistics", U.S.Treasury Department. These Basic Export Statistics Were Modified As To Classification Of Commodities, And Were Adjusted To Price Levels Comparable With The Output Data (Manufacturers\' Or Producers\' Prices). Imports For Consumption, Including Duties, Were Obtained From Fiscal- Year Data In"Foreign Commerce And Navigation", And Were Adjusted To A Calendar- Year Basis. For The Period 1919-33, The Data Are Based On Kuznets\' Estimates ("Commodity Flow And Capital Formation", I, New York, NBER, 1938), Adjusted To Improve Comparability With Earlier Years. Ratios Of Kuznets\' Unadjusted Value Of Domestic Consumption To His Unadjusted Value Of Domestic Output Were Computed For 1919 And 1929 And Interpolated For Intervening Years. These Ratios Were Applied To Kuznets\' Adjusted Output Values. After 1933 The Estimates Are Rough Extrapolations. Values In 1913 Prices Were Derived By Applying Price Indexes To The Current Price Series. For 1914-39, Bureau Of Labor Statistics Indexes For Lumber And Building Materials And For Steel Rails Were Combined, Using 1926 Weights. For 1890-1913, A Similar Composite, Using 1909 Weights, Was Combined With An Index Of Structural Steel Prices, Computed From"Metal Statistics", 1938. For Years Before 1890, Series On Eleven Commodities Were Combined, Using 1909 Bls Weights, And The Resulting Index Was Linked To The Series For Later Years. See Lipsey And Preston, Pp. 284-285. Source: William Howard Shaw, "Value Of Commodity Output Since 1869", Pp. 64-65, 69, 76-77. In Addition To The Annual Data Beginning In 1889, Estimates Are Given In The Source For 1889 And 1879 As Follows: 1869 ($ Million), Current Dollars, 377.4; 1913 Dollars, 351.4; 1879 ($ Million), Current Dollars, 444.2; 1913 Dollars, 545.7. See Lipsey And Preston, P. 284.\n\nThis NBER data series a02233 appears on the NBER website in Chapter 2 at http://www.nber.org/databases/macrohistory/contents/chapter02.html.\n\nNBER Indicator: a02233'},
{'id': 'B366RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real farm output: Consumption of fixed capital (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-10-02 13:13:23-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B366RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSERRA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Services (chain-type quantity index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:47:32-05',
'popularity': 17,
'group_popularity': 20,
'notes': 'BEA Account Code: DSERRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP02MXQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Mexico',
'observation_start': '1980-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:07:55-06',
'popularity': 1,
'group_popularity': 4,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: MEX\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02MXA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Mexico',
'observation_start': '1980-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:52:14-06',
'popularity': 1,
'group_popularity': 4,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: MEX\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02CLA661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Chile',
'observation_start': '1996-01-01',
'observation_end': '2022-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-02-09 15:14:06-06',
'popularity': 1,
'group_popularity': 4,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: CHL\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'NAEXKP02CLQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Private Final Consumption Expenditure for Chile',
'observation_start': '1996-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-02-09 15:14:06-06',
'popularity': 1,
'group_popularity': 4,
'notes': 'OECD Descriptor ID: NAEXKP02\nOECD unit ID: IDX\nOECD country ID: CHL\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'B188RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real net fixed investment: Net nonresidential: Structures: Consumption of fixed capital (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-10-02 13:13:30-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: B188RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DMOTRA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Durable goods: Motor vehicles and parts (chain-type quantity index)',
'observation_start': '1947-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:49:10-05',
'popularity': 3,
'group_popularity': 4,
'notes': 'BEA Account Code: DMOTRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'W240RA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Net purchases of used autos and used light trucks (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:51:45-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'BEA Account Code: W240RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DMTRRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Transportation: Motor vehicles (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-10-02 13:13:18-05',
'popularity': 2,
'group_popularity': 2,
'notes': 'BEA Account Code: DMTRRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'W240RA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Net purchases of used autos and used light trucks (chain-type quantity index)',
'observation_start': '1967-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:49:31-05',
'popularity': 1,
'group_popularity': 2,
'notes': 'BEA Account Code: W240RA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DMOTRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Durable goods: Motor vehicles and parts (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:45-05',
'popularity': 1,
'group_popularity': 4,
'notes': 'BEA Account Code: DMOTRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSERRA3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Services (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:27-05',
'popularity': 4,
'group_popularity': 20,
'notes': 'BEA Account Code: DSERRA\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'NAEXKP03NLQ661S',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'National Accounts: GDP by Expenditure: Constant Prices: Government Final Consumption Expenditure for Netherlands',
'observation_start': '1988-01-01',
'observation_end': '2023-07-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2015=100',
'units_short': 'Index 2015=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2024-01-12 14:40:44-06',
'popularity': 2,
'group_popularity': 6,
'notes': 'OECD Descriptor ID: NAEXKP03\nOECD unit ID: IDX\nOECD country ID: NLD\n\nAll OECD data should be cited as follows: OECD, "Main Economic Indicators - complete database", Main Economic Indicators (database), https://dx.doi.org/10.1787/data-00052-en (Accessed on date) Copyright, 2016, OECD. Reprinted with permission'},
{'id': 'DPCMRA3M086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Market-based (chain-type quantity index)',
'observation_start': '1987-01-01',
'observation_end': '2025-08-01',
'frequency': 'Monthly',
'frequency_short': 'M',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-26 07:43:34-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DPCMRA\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DSPERA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Admissions to specified spectator amusements: Spectator sports (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:11-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DSPERA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DPCMRA3Q086SBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Market-based (chain-type quantity index)',
'observation_start': '1987-01-01',
'observation_end': '2025-04-01',
'frequency': 'Quarterly',
'frequency_short': 'Q',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Seasonally Adjusted',
'seasonal_adjustment_short': 'SA',
'last_updated': '2025-09-25 07:52:35-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DPCMRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DPCMRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Market-based (chain-type quantity index)',
'observation_start': '1987-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:37-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DPCMRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DMOVRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Admissions to specified spectator amusements: Motion picture theaters (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DMOVRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DADMRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Admissions to specified spectator amusements (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:51:03-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DADMRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DFTWRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Footwear (chain-type quantity index)',
'observation_start': '1929-01-01',
'observation_end': '2023-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2024-10-02 13:12:51-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DFTWRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DMUSRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Museums and libraries (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:45-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DMUSRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'},
{'id': 'DMDFRA3A086NBEA',
'realtime_start': '2025-09-30',
'realtime_end': '2025-09-30',
'title': 'Real personal consumption expenditures: Membership clubs and participant sports centers (chain-type quantity index)',
'observation_start': '1959-01-01',
'observation_end': '2024-01-01',
'frequency': 'Annual',
'frequency_short': 'A',
'units': 'Index 2017=100',
'units_short': 'Index 2017=100',
'seasonal_adjustment': 'Not Seasonally Adjusted',
'seasonal_adjustment_short': 'NSA',
'last_updated': '2025-09-25 07:50:46-05',
'popularity': 1,
'group_popularity': 1,
'notes': 'BEA Account Code: DMDFRA\n\nFor more information about this series, please see http://www.bea.gov/national/.'}]}
#explore the keys of response
data.keys()
dict_keys(['realtime_start', 'realtime_end', 'order_by', 'sort_order', 'count', 'offset', 'limit', 'seriess'])
#dataframe of seriess
pd.DataFrame(data['seriess'])
| id | realtime_start | realtime_end | title | observation_start | observation_end | frequency | frequency_short | units | units_short | seasonal_adjustment | seasonal_adjustment_short | last_updated | popularity | group_popularity | notes | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | CPIAUCSL | 2025-09-30 | 2025-09-30 | Consumer Price Index for All Urban Consumers: ... | 1947-01-01 | 2025-08-01 | Monthly | M | Index 1982-1984=100 | Index 1982-1984=100 | Seasonally Adjusted | SA | 2025-09-11 07:42:02-05 | 98 | 98 | The Consumer Price Index for All Urban Consume... |
| 1 | CPIAUCNS | 2025-09-30 | 2025-09-30 | Consumer Price Index for All Urban Consumers: ... | 1913-01-01 | 2025-08-01 | Monthly | M | Index 1982-1984=100 | Index 1982-1984=100 | Not Seasonally Adjusted | NSA | 2025-09-11 07:42:02-05 | 81 | 98 | Handbook of Methods (https://www.bls.gov/opub/... |
| 2 | CUUS0000SA0 | 2025-09-30 | 2025-09-30 | Consumer Price Index for All Urban Consumers: ... | 1984-01-01 | 2025-01-01 | Semiannual | SA | Index 1982-1984=100 | Index 1982-1984=100 | Not Seasonally Adjusted | NSA | 2025-07-15 07:41:20-05 | 42 | 98 | NaN |
| 3 | FPCPITOTLZGUSA | 2025-09-30 | 2025-09-30 | Inflation, consumer prices for the United States | 1960-01-01 | 2024-01-01 | Annual | A | Percent | % | Not Seasonally Adjusted | NSA | 2025-04-16 13:53:02-05 | 87 | 87 | Inflation as measured by the consumer price in... |
| 4 | PCEPI | 2025-09-30 | 2025-09-30 | Personal Consumption Expenditures: Chain-type ... | 1959-01-01 | 2025-08-01 | Monthly | M | Index 2017=100 | Index 2017=100 | Seasonally Adjusted | SA | 2025-09-26 07:43:01-05 | 85 | 85 | BEA Account Code: DPCERG\r\n\r\nThe Personal C... |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 995 | DMOVRA3A086NBEA | 2025-09-30 | 2025-09-30 | Real personal consumption expenditures: Admiss... | 1959-01-01 | 2024-01-01 | Annual | A | Index 2017=100 | Index 2017=100 | Not Seasonally Adjusted | NSA | 2025-09-25 07:50:45-05 | 1 | 1 | BEA Account Code: DMOVRA\n\nFor more informati... |
| 996 | DADMRA3A086NBEA | 2025-09-30 | 2025-09-30 | Real personal consumption expenditures: Admiss... | 1959-01-01 | 2024-01-01 | Annual | A | Index 2017=100 | Index 2017=100 | Not Seasonally Adjusted | NSA | 2025-09-25 07:51:03-05 | 1 | 1 | BEA Account Code: DADMRA\n\nFor more informati... |
| 997 | DFTWRA3A086NBEA | 2025-09-30 | 2025-09-30 | Real personal consumption expenditures: Footwe... | 1929-01-01 | 2023-01-01 | Annual | A | Index 2017=100 | Index 2017=100 | Not Seasonally Adjusted | NSA | 2024-10-02 13:12:51-05 | 1 | 1 | BEA Account Code: DFTWRA\n\nFor more informati... |
| 998 | DMUSRA3A086NBEA | 2025-09-30 | 2025-09-30 | Real personal consumption expenditures: Museum... | 1959-01-01 | 2024-01-01 | Annual | A | Index 2017=100 | Index 2017=100 | Not Seasonally Adjusted | NSA | 2025-09-25 07:50:45-05 | 1 | 1 | BEA Account Code: DMUSRA\n\nFor more informati... |
| 999 | DMDFRA3A086NBEA | 2025-09-30 | 2025-09-30 | Real personal consumption expenditures: Member... | 1959-01-01 | 2024-01-01 | Annual | A | Index 2017=100 | Index 2017=100 | Not Seasonally Adjusted | NSA | 2025-09-25 07:50:46-05 | 1 | 1 | BEA Account Code: DMDFRA\n\nFor more informati... |
1000 rows × 16 columns
Exploring the Unemployment Rate#
The unemployment rate is series_id: 'UNRATE'. We explore the data below.
url = 'https://api.stlouisfed.org/fred/series/observations'
series_id = 'CPIAUCS'
url = 'https://api.stlouisfed.org/fred/series/observations'
params = {'series_id': series_id,
'api_key': api_key,
'file_type': 'json'}
r = requests.get(url, params = params)
def retreive_and_plot_series(series_id):
#structure url and make request
url = 'https://api.stlouisfed.org/fred/series/observations'
params = {'series_id': series_id,
'api_key': api_key,
'file_type': 'json'}
r = requests.get(url, params = params)
data = r.json()
obs_df = pd.DataFrame(data['observations'])
obs_df['value'] = obs_df['value'].astype('float')
obs_df['date'] = pd.to_datetime(obs_df['date'])
obs_df.set_index('date', inplace = True)
sns.set_theme(style="whitegrid", palette="pastel")
sns.lineplot(data = obs_df,x = obs_df.index, y = 'value')
plt.title(f'{series_id}', loc = 'left')
plt.show();
retreive_and_plot_series('DMUSRA3A086NBEA')
#structure url and make request
params = {'series_id':'UNRATE',
'api_key': api_key,
'file_type': 'json'}
r = requests.get(url, params = params)
#response code
r
<Response [200]>
#explore the text
r.text[:1000]
'{"realtime_start":"2025-09-05","realtime_end":"2025-09-05","observation_start":"1600-01-01","observation_end":"9999-12-31","units":"lin","output_type":1,"file_type":"json","order_by":"observation_date","sort_order":"asc","count":932,"offset":0,"limit":100000,"observations":[{"realtime_start":"2025-09-05","realtime_end":"2025-09-05","date":"1948-01-01","value":"3.4"},{"realtime_start":"2025-09-05","realtime_end":"2025-09-05","date":"1948-02-01","value":"3.8"},{"realtime_start":"2025-09-05","realtime_end":"2025-09-05","date":"1948-03-01","value":"4.0"},{"realtime_start":"2025-09-05","realtime_end":"2025-09-05","date":"1948-04-01","value":"3.9"},{"realtime_start":"2025-09-05","realtime_end":"2025-09-05","date":"1948-05-01","value":"3.5"},{"realtime_start":"2025-09-05","realtime_end":"2025-09-05","date":"1948-06-01","value":"3.6"},{"realtime_start":"2025-09-05","realtime_end":"2025-09-05","date":"1948-07-01","value":"3.6"},{"realtime_start":"2025-09-05","realtime_end":"2025-09-05","date":"'
#turn into json
data = r.json()
data.keys()
dict_keys(['realtime_start', 'realtime_end', 'observation_start', 'observation_end', 'units', 'output_type', 'file_type', 'order_by', 'sort_order', 'count', 'offset', 'limit', 'observations'])
#observations are what we want
data['observations']
[{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-01-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-02-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-03-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-04-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-05-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-06-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-07-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-08-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-09-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-10-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-11-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1948-12-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-01-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-02-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-03-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-04-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-05-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-06-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-07-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-08-01',
'value': '6.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-09-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-10-01',
'value': '7.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-11-01',
'value': '6.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1949-12-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-01-01',
'value': '6.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-02-01',
'value': '6.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-03-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-04-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-05-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-06-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-07-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-08-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-09-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-10-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-11-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1950-12-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-01-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-02-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-03-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-04-01',
'value': '3.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-05-01',
'value': '3.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-06-01',
'value': '3.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-07-01',
'value': '3.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-08-01',
'value': '3.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-09-01',
'value': '3.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-10-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-11-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1951-12-01',
'value': '3.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-01-01',
'value': '3.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-02-01',
'value': '3.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-03-01',
'value': '2.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-04-01',
'value': '2.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-05-01',
'value': '3.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-06-01',
'value': '3.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-07-01',
'value': '3.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-08-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-09-01',
'value': '3.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-10-01',
'value': '3.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-11-01',
'value': '2.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1952-12-01',
'value': '2.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-01-01',
'value': '2.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-02-01',
'value': '2.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-03-01',
'value': '2.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-04-01',
'value': '2.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-05-01',
'value': '2.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-06-01',
'value': '2.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-07-01',
'value': '2.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-08-01',
'value': '2.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-09-01',
'value': '2.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-10-01',
'value': '3.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-11-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1953-12-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-01-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-02-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-03-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-04-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-05-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-06-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-07-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-08-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-09-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-10-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-11-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1954-12-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-01-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-02-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-03-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-04-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-05-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-06-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-07-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-08-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-09-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-10-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-11-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1955-12-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-01-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-02-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-03-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-04-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-05-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-06-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-07-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-08-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-09-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-10-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-11-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1956-12-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-01-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-02-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-03-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-04-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-05-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-06-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-07-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-08-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-09-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-10-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-11-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1957-12-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-01-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-02-01',
'value': '6.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-03-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-04-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-05-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-06-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-07-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-08-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-09-01',
'value': '7.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-10-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-11-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1958-12-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-01-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-02-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-03-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-04-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-05-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-06-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-07-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-08-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-09-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-10-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-11-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1959-12-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-01-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-02-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-03-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-04-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-05-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-06-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-07-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-08-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-09-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-10-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-11-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1960-12-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-01-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-02-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-03-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-04-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-05-01',
'value': '7.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-06-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-07-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-08-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-09-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-10-01',
'value': '6.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-11-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1961-12-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-01-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-02-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-03-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-04-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-05-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-06-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-07-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-08-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-09-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-10-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-11-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1962-12-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-01-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-02-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-03-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-04-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-05-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-06-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-07-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-08-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-09-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-10-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-11-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1963-12-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-01-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-02-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-03-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-04-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-05-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-06-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-07-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-08-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-09-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-10-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-11-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1964-12-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-01-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-02-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-03-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-04-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-05-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-06-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-07-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-08-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-09-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-10-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-11-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1965-12-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-01-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-02-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-03-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-04-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-05-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-06-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-07-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-08-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-09-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-10-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-11-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1966-12-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-01-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-02-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-03-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-04-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-05-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-06-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-07-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-08-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-09-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-10-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-11-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1967-12-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-01-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-02-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-03-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-04-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-05-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-06-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-07-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-08-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-09-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-10-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-11-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1968-12-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-01-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-02-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-03-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-04-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-05-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-06-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-07-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-08-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-09-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-10-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-11-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1969-12-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-01-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-02-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-03-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-04-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-05-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-06-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-07-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-08-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-09-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-10-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-11-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1970-12-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-01-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-02-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-03-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-04-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-05-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-06-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-07-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-08-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-09-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-10-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-11-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1971-12-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-01-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-02-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-03-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-04-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-05-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-06-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-07-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-08-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-09-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-10-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-11-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1972-12-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-01-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-02-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-03-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-04-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-05-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-06-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-07-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-08-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-09-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-10-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-11-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1973-12-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-01-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-02-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-03-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-04-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-05-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-06-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-07-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-08-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-09-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-10-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-11-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1974-12-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-01-01',
'value': '8.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-02-01',
'value': '8.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-03-01',
'value': '8.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-04-01',
'value': '8.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-05-01',
'value': '9.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-06-01',
'value': '8.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-07-01',
'value': '8.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-08-01',
'value': '8.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-09-01',
'value': '8.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-10-01',
'value': '8.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-11-01',
'value': '8.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1975-12-01',
'value': '8.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-01-01',
'value': '7.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-02-01',
'value': '7.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-03-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-04-01',
'value': '7.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-05-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-06-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-07-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-08-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-09-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-10-01',
'value': '7.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-11-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1976-12-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-01-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-02-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-03-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-04-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-05-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-06-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-07-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-08-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-09-01',
'value': '6.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-10-01',
'value': '6.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-11-01',
'value': '6.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1977-12-01',
'value': '6.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-01-01',
'value': '6.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-02-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-03-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-04-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-05-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-06-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-07-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-08-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-09-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-10-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-11-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1978-12-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-01-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-02-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-03-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-04-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-05-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-06-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-07-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-08-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-09-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-10-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-11-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1979-12-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-01-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-02-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-03-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-04-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-05-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-06-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-07-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-08-01',
'value': '7.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-09-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-10-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-11-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1980-12-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-01-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-02-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-03-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-04-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-05-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-06-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-07-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-08-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-09-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-10-01',
'value': '7.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-11-01',
'value': '8.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1981-12-01',
'value': '8.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-01-01',
'value': '8.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-02-01',
'value': '8.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-03-01',
'value': '9.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-04-01',
'value': '9.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-05-01',
'value': '9.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-06-01',
'value': '9.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-07-01',
'value': '9.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-08-01',
'value': '9.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-09-01',
'value': '10.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-10-01',
'value': '10.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-11-01',
'value': '10.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1982-12-01',
'value': '10.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-01-01',
'value': '10.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-02-01',
'value': '10.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-03-01',
'value': '10.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-04-01',
'value': '10.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-05-01',
'value': '10.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-06-01',
'value': '10.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-07-01',
'value': '9.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-08-01',
'value': '9.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-09-01',
'value': '9.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-10-01',
'value': '8.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-11-01',
'value': '8.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1983-12-01',
'value': '8.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-01-01',
'value': '8.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-02-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-03-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-04-01',
'value': '7.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-05-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-06-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-07-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-08-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-09-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-10-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-11-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1984-12-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-01-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-02-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-03-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-04-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-05-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-06-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-07-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-08-01',
'value': '7.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-09-01',
'value': '7.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-10-01',
'value': '7.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-11-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1985-12-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-01-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-02-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-03-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-04-01',
'value': '7.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-05-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-06-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-07-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-08-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-09-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-10-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-11-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1986-12-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-01-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-02-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-03-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-04-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-05-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-06-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-07-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-08-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-09-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-10-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-11-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1987-12-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-01-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-02-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-03-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-04-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-05-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-06-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-07-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-08-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-09-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-10-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-11-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1988-12-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-01-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-02-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-03-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-04-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-05-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-06-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-07-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-08-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-09-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-10-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-11-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1989-12-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-01-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-02-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-03-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-04-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-05-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-06-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-07-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-08-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-09-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-10-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-11-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1990-12-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-01-01',
'value': '6.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-02-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-03-01',
'value': '6.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-04-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-05-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-06-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-07-01',
'value': '6.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-08-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-09-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-10-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-11-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1991-12-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-01-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-02-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-03-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-04-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-05-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-06-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-07-01',
'value': '7.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-08-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-09-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-10-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-11-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1992-12-01',
'value': '7.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-01-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-02-01',
'value': '7.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-03-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-04-01',
'value': '7.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-05-01',
'value': '7.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-06-01',
'value': '7.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-07-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-08-01',
'value': '6.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-09-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-10-01',
'value': '6.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-11-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1993-12-01',
'value': '6.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-01-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-02-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-03-01',
'value': '6.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-04-01',
'value': '6.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-05-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-06-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-07-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-08-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-09-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-10-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-11-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1994-12-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-01-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-02-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-03-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-04-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-05-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-06-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-07-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-08-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-09-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-10-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-11-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1995-12-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-01-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-02-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-03-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-04-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-05-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-06-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-07-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-08-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-09-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-10-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-11-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1996-12-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-01-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-02-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-03-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-04-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-05-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-06-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-07-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-08-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-09-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-10-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-11-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1997-12-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-01-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-02-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-03-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-04-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-05-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-06-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-07-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-08-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-09-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-10-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-11-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1998-12-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-01-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-02-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-03-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-04-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-05-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-06-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-07-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-08-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-09-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-10-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-11-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '1999-12-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-01-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-02-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-03-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-04-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-05-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-06-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-07-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-08-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-09-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-10-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-11-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2000-12-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-01-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-02-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-03-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-04-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-05-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-06-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-07-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-08-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-09-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-10-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-11-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2001-12-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-01-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-02-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-03-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-04-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-05-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-06-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-07-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-08-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-09-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-10-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-11-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2002-12-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-01-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-02-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-03-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-04-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-05-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-06-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-07-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-08-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-09-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-10-01',
'value': '6.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-11-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2003-12-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-01-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-02-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-03-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-04-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-05-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-06-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-07-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-08-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-09-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-10-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-11-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2004-12-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-01-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-02-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-03-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-04-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-05-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-06-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-07-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-08-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-09-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-10-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-11-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2005-12-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-01-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-02-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-03-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-04-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-05-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-06-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-07-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-08-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-09-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-10-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-11-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2006-12-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-01-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-02-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-03-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-04-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-05-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-06-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-07-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-08-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-09-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-10-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-11-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2007-12-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-01-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-02-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-03-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-04-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-05-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-06-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-07-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-08-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-09-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-10-01',
'value': '6.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-11-01',
'value': '6.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2008-12-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-01-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-02-01',
'value': '8.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-03-01',
'value': '8.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-04-01',
'value': '9.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-05-01',
'value': '9.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-06-01',
'value': '9.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-07-01',
'value': '9.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-08-01',
'value': '9.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-09-01',
'value': '9.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-10-01',
'value': '10.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-11-01',
'value': '9.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2009-12-01',
'value': '9.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-01-01',
'value': '9.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-02-01',
'value': '9.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-03-01',
'value': '9.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-04-01',
'value': '9.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-05-01',
'value': '9.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-06-01',
'value': '9.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-07-01',
'value': '9.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-08-01',
'value': '9.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-09-01',
'value': '9.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-10-01',
'value': '9.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-11-01',
'value': '9.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2010-12-01',
'value': '9.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-01-01',
'value': '9.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-02-01',
'value': '9.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-03-01',
'value': '9.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-04-01',
'value': '9.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-05-01',
'value': '9.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-06-01',
'value': '9.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-07-01',
'value': '9.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-08-01',
'value': '9.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-09-01',
'value': '9.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-10-01',
'value': '8.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-11-01',
'value': '8.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2011-12-01',
'value': '8.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-01-01',
'value': '8.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-02-01',
'value': '8.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-03-01',
'value': '8.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-04-01',
'value': '8.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-05-01',
'value': '8.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-06-01',
'value': '8.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-07-01',
'value': '8.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-08-01',
'value': '8.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-09-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-10-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-11-01',
'value': '7.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2012-12-01',
'value': '7.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-01-01',
'value': '8.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-02-01',
'value': '7.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-03-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-04-01',
'value': '7.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-05-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-06-01',
'value': '7.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-07-01',
'value': '7.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-08-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-09-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-10-01',
'value': '7.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-11-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2013-12-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-01-01',
'value': '6.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-02-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-03-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-04-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-05-01',
'value': '6.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-06-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-07-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-08-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-09-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-10-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-11-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2014-12-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-01-01',
'value': '5.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-02-01',
'value': '5.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-03-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-04-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-05-01',
'value': '5.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-06-01',
'value': '5.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-07-01',
'value': '5.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-08-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-09-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-10-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-11-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2015-12-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-01-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-02-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-03-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-04-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-05-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-06-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-07-01',
'value': '4.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-08-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-09-01',
'value': '5.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-10-01',
'value': '4.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-11-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2016-12-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-01-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-02-01',
'value': '4.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-03-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-04-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-05-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-06-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-07-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-08-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-09-01',
'value': '4.3'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-10-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-11-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2017-12-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-01-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-02-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-03-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-04-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-05-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-06-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-07-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-08-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-09-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-10-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-11-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2018-12-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-01-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-02-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-03-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-04-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-05-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-06-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-07-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-08-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-09-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-10-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-11-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2019-12-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-01-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-02-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-03-01',
'value': '4.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-04-01',
'value': '14.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-05-01',
'value': '13.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-06-01',
'value': '11.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-07-01',
'value': '10.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-08-01',
'value': '8.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-09-01',
'value': '7.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-10-01',
'value': '6.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-11-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2020-12-01',
'value': '6.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-01-01',
'value': '6.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-02-01',
'value': '6.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-03-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-04-01',
'value': '6.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-05-01',
'value': '5.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-06-01',
'value': '5.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-07-01',
'value': '5.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-08-01',
'value': '5.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-09-01',
'value': '4.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-10-01',
'value': '4.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-11-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2021-12-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-01-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-02-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-03-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-04-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-05-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-06-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-07-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-08-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-09-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-10-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-11-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2022-12-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-01-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-02-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-03-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-04-01',
'value': '3.4'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-05-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-06-01',
'value': '3.6'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-07-01',
'value': '3.5'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-08-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-09-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-10-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-11-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2023-12-01',
'value': '3.8'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-01-01',
'value': '3.7'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-02-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-03-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-04-01',
'value': '3.9'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-05-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-06-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-07-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-08-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-09-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-10-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-11-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2024-12-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2025-01-01',
'value': '4.0'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2025-02-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2025-03-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2025-04-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2025-05-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2025-06-01',
'value': '4.1'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2025-07-01',
'value': '4.2'},
{'realtime_start': '2025-09-05',
'realtime_end': '2025-09-05',
'date': '2025-08-01',
'value': '4.3'}]
#dataframe of observations
obs_df = pd.DataFrame(data['observations'])
obs_df.head()
| realtime_start | realtime_end | date | value | |
|---|---|---|---|---|
| 0 | 2025-09-05 | 2025-09-05 | 1948-01-01 | 3.4 |
| 1 | 2025-09-05 | 2025-09-05 | 1948-02-01 | 3.8 |
| 2 | 2025-09-05 | 2025-09-05 | 1948-03-01 | 4.0 |
| 3 | 2025-09-05 | 2025-09-05 | 1948-04-01 | 3.9 |
| 4 | 2025-09-05 | 2025-09-05 | 1948-05-01 | 3.5 |
#look over .info
obs_df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 932 entries, 0 to 931
Data columns (total 4 columns):
# Column Non-Null Count Dtype
--- ------ -------------- -----
0 realtime_start 932 non-null object
1 realtime_end 932 non-null object
2 date 932 non-null datetime64[ns]
3 value 932 non-null float64
dtypes: datetime64[ns](1), float64(1), object(2)
memory usage: 29.3+ KB
#change value to float
obs_df['value'] = obs_df['value'].astype('float')
#change date to datetime
obs_df['date'] = pd.to_datetime(obs_df['date'])
#set date to index
obs_df.set_index('date', inplace = True)
sns.set_theme(style="whitegrid", palette="pastel")
sns.lineplot(data = obs_df,x = obs_df.index, y = 'value')
plt.title('Unemployment Rate: 1948 - 2025', loc = 'left');
PROBLEM
Find another series from the FRED data and create a plot of your response.
Accessing Data with a Library#
The SEC shares much of its data through an API called EDGAR. There is a library pyedgar that allows you to interact with the API here. Can you use the library to extract filings for a company of your choosing?
!pip install edgar
Requirement already satisfied: edgar in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (5.6.3)
Requirement already satisfied: requests in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from edgar) (2.32.3)
Requirement already satisfied: lxml in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from edgar) (5.1.0)
Requirement already satisfied: tqdm in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from edgar) (4.67.1)
Requirement already satisfied: rapidfuzz in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from edgar) (3.14.1)
Requirement already satisfied: charset-normalizer<4,>=2 in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from requests->edgar) (3.3.2)
Requirement already satisfied: idna<4,>=2.5 in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from requests->edgar) (3.6)
Requirement already satisfied: urllib3<3,>=1.21.1 in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from requests->edgar) (2.1.0)
Requirement already satisfied: certifi>=2017.4.17 in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from requests->edgar) (2024.8.30)
[notice] A new release of pip is available: 24.3.1 -> 25.2
[notice] To update, run: pip install --upgrade pip
from edgar import Company, TXTML
company = Company("INTERNATIONAL BUSINESS MACHINES CORP", "0000051143")
doc = company.get_10K()
text = TXTML.parse_full_10K(doc)
print(text[:1000])
version='1.0' encoding='ASCII'? XBRL Document Created with the Workiva Platform Copyright 2025 Workiva r:e5e4c6dd-a0e3-4a8d-aa78-eb8c6666d274,g:21436d97-1a01-444f-9a49-04dee52d2242,d:af7e987c179946fe9556e9c6006b4d87 ibm-20241231 CHX 0000051143 2024 FY false P5Y P3Y http://fasb.org/us-gaap/2024#Revenues http://fasb.org/us-gaap/2024#Revenues http://fasb.org/us-gaap/2024#Revenues P1Y P1Y http://fasb.org/us-gaap/2024#SellingGeneralAndAdministrativeExpense http://fasb.org/us-gaap/2024#SellingGeneralAndAdministrativeExpense http://fasb.org/us-gaap/2024#SellingGeneralAndAdministrativeExpense P1Y P1Y http://fasb.org/us-gaap/2024#AccountsPayableCurrent http://fasb.org/us-gaap/2024#AccountsPayableCurrent http://fasb.org/us-gaap/2024#PropertyPlantAndEquipmentAndFinanceLeaseRightOfUseAssetAfterAccumulatedDepreciationAndAmortization http://fasb.org/us-gaap/2024#PropertyPlantAndEquipmentAndFinanceLeaseRightOfUseAssetAfterAccumulatedDepreciationAndAmortization http://fasb.org/us-gaap/2024#ShortTermB
Last FM#
The API for Last FM requires an API Key. Head over here to signup for yours – it should be instantaneous.
base_url = ''
#examine the response
#extract the headline
Exercise
Use the album.GetInfo method docs to get information about an album of your choosing.
Finding an API#
There are many different API’s with interesting data out there. Your goal is to find an API of interest and make a request of the API, structuring the result as a DataFrame. Record your findings here.