All datasets

Global long-run inflation-regime signals (BIS CPI, 63 economies, 1913-present)

Long-run inflation signals derived from the BIS long-run consumer price index: year-on-year inflation, acceleration gauges, 3-month momentum, 30-month annualized change volatility, 3-sigma anomaly flags vs a trailing 12-month baseline, naive-drift 1-month forecasts, per-month cross-country volatility ranks, high-inflation (>5%) and deflation flags, and 10-year inflation z-scores for 63 economies with history in many cases back to 1913. The monetizable inflation-regime signals layer on top of raw BIS consumer-price data. Raw series: BIS long-run consumer price index.

Source: Global Long-Run Inflation-Regime Signals (derived)48,145 rowsUpdated: 9/22/2026
inflationcpiconsumer-pricesdisinflationhyperinflationregimesbismomentumvolatilityanomaly-detectionforecastingsignals

Quality

96.4

Attribution

Bank for International Settlements, long-run consumer price index; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference month of the BIS long-run consumer price index observation (monthly).
countrystring
country_codestring
series_idstringBIS series identifier for the long-run consumer price index of the economy.
series_labelstringEconomy name as published by BIS for the long-run consumer price index.
valuefloatConsumer price index level as published by BIS (long-run series, national sources).
yoy_inflation_pctfloat
inflation_accelerationfloat
momentum_3mfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
high_inflation_flaginteger
deflation_flaginteger
inflation_z_10yfloat

Sample rows

datecountrycountry_codeseries_idseries_labelvalueyoy_inflation_pctinflation_accelerationmomentum_3mvolatility_30danomaly_flagforecast_1mrankhigh_inflation_flagdeflation_flaginflation_z_10y
1913-01-01United StatesUSAUSUnited States4.494269000
1913-02-01United StatesUSAUSUnited States4.494269000
1913-03-01United StatesUSAUSUnited States4.494269000
1913-04-01United StatesUSAUSUnited States4.494269000
1913-05-01United StatesUSAUSUnited States4.448409000

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/bis_inflation_signals/global_long_run_inflation_regime_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/bis_inflation_signals/global_long_run_inflation_regime_signals").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/bis_inflation_signals/global_long_run_inflation_regime_signals

Tip: fetch /llms.txt for the full machine-readable catalog.