EU Parliament Monitor — API Documentation - v0.8.39
    Preparing search index...

    Interface IMFEconomicIndicatorSummary

    Summary row for one indicator used in article/HTML embedding. Distinct from the World Bank EconomicIndicatorSummary because an IMF row carries a forecast flag and optional IMF vintage attribution.

    interface IMFEconomicIndicatorSummary {
        name: string;
        indicatorId: string;
        database: string;
        value: number | null;
        period: string;
        year: number;
        isForecast: boolean;
        formatted: string;
        vintage?: string;
    }
    Index

    Properties

    name: string

    Indicator display name (e.g. "Real GDP growth").

    indicatorId: string

    IMF indicator code.

    database: string

    IMF database code (WEO, FM, IFS, ...).

    value: number | null

    Most recent reported value.

    period: string

    Period label of the reported value.

    year: number

    Year component.

    isForecast: boolean

    true when the reported value is a forecast rather than an actual.

    formatted: string

    Pre-formatted display string (e.g. "3.1 %", "$4.2T").

    vintage?: string

    IMF data vintage label (e.g. WEO-April-2026) when the MCP response surfaces it.