Federal Contractor

HONEYWELL INTERNATIONAL INC. Federal Contract Obligations (Last 10 Years)

Federal procurement summary for HONEYWELL INTERNATIONAL INC. (CAGE 14061, UEI DMEGBYTVBQS5) covering obligations and award activity over the last 10 years.

HONEYWELL INTERNATIONAL INC. recorded 238 federal award actions totaling $14,246,553,132.93 in the last 10 years, with an average action value of $59,859,466.94. The Department of Energy accounts for all listed obligations, and NAICS 561210, Facilities Support Services, is the top industry category in this period.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual totals shown for 2021 through 2025 are based on the provided FPDS analysis window and may not sum to the full 10-year total if earlier years are excluded from the trend view.

CAGE Code
14061
UEI
DMEGBYTVBQS5
Total Obligated
14.25 billion
14,246,553,132.93
Award Actions
238
Average Action Value
59,859,466.94

About HONEYWELL INTERNATIONAL INC. federal contract activity

HONEYWELL INTERNATIONAL INC. (CAGE 14061, UEI DMEGBYTVBQS5) recorded $14.25 billion in obligated federal spending across 238 FPDS actions over the last 10 years, for an average award value of about $59.86 million. The profile is highly concentrated, with a single agency and a single NAICS category accounting for the full observed obligated total in the provided data.

Agency mix and customer concentration

All observed obligations are attributed to the ENERGY, DEPARTMENT OF, which represents 100% of the vendor’s total obligated dollars and all 238 awards in this analysis window. This indicates a highly concentrated customer relationship rather than a broad federal portfolio.

Industry profile based on NAICS activity

The entire observed obligated total is classified under NAICS 561210, FACILITIES SUPPORT SERVICES, with 238 awards tied to that code. The data therefore reflects a narrow procurement footprint centered on facilities support work rather than a diversified mix of products or services.

Annual contract trend over the analysis window

Annual obligations remained in the multi-billion-dollar range from 2021 through 2025, with a low of $1.61 billion in 2022 and a peak of $2.26 billion in 2025. Award counts were also steady, ranging from 22 in 2021 to 38 in 2025, suggesting recurring procurement activity rather than isolated large awards.

How to interpret this page

This summary is based on FPDS award records for the last 10 years and uses obligated dollars as the primary measure of contract value. Agency, NAICS, and annual trend figures reflect the provided aggregate dataset and may not capture non-FPDS activity, modifications outside the analysis window, or awards not associated with the listed identifiers.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '14061'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
8900 ENERGY, DEPARTMENT OF 14,246,553,132.93 14.25 billion 238

Insight

Over the last 10 years, HONEYWELL INTERNATIONAL INC. (CAGE 14061) received $14.25 billion in obligated award value across 238 awards, for an average award value of about $59.9 million. All recorded obligations in this period are concentrated in the Department of Energy, indicating a single-agency funding profile with no diversification across other agencies in this dataset. This level of concentration suggests the vendor’s federal business in the period analyzed was entirely dependent on DOE awards.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '14061'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
561210 FACILITIES SUPPORT SERVICES 14,246,553,132.93 14.25 billion 238

Insight

Over the last 10 years, HONEYWELL INTERNATIONAL INC. (CAGE 14061) shows complete concentration in NAICS 561210, Facilities Support Services, with all 238 awards and the full $14.25 billion obligated in this single category. This indicates a highly concentrated vendor profile rather than a diversified NAICS distribution. The average award value of about $59.9 million further suggests this category is driven by large-value obligations.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '14061'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 2,263,010,398.19 2.26 billion 38
2024 1,759,295,538.97 1.76 billion 33
2023 2,068,405,594.11 2.07 billion 28
2022 1,608,122,563.11 1.61 billion 29
2021 1,986,871,969.28 1.99 billion 22
2020 1,484,030,556.87 1.48 billion 20
2019 751,544,818.90 751.54 million 16
2018 1,729,704,604.73 1.73 billion 26
2017 595,567,088.77 595.57 million 26

Insight

Over the last 10 years, HONEYWELL INTERNATIONAL INC. received $14.25 billion across 238 awards, averaging $59.9 million per award. Obligations are concentrated in recent years, with 2025, 2023, 2024, 2021, and 2022 each exceeding $1.6 billion, while 2017 and 2019 were materially lower at $595.6 million and $751.5 million, respectively. Award counts are comparatively steady, ranging from 16 to 38 per year, indicating that obligation volatility is driven more by award value than by transaction volume.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.