Federal Contractor

BOOZ ALLEN HAMILTON INC. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for BOOZ ALLEN HAMILTON INC. showing 10 years of award activity, obligated dollars, and agency and NAICS concentration.

BOOZ ALLEN HAMILTON INC. (CAGE 1D060, UEI KHK6E1JW9C15) recorded 371 award actions and $4,391,195,600.48 in obligated federal spending over the last 10 years, for an average action value of $11,836,106.73. The activity shown here is concentrated in the Department of Veterans Affairs and NAICS 541512, Computer Systems Design Services.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual figures reflect the latest 10-year analysis window and include 2021 through 2025 as provided in the trend data.

CAGE Code
1D060
UEI
KHK6E1JW9C15
Total Obligated
4.39 billion
4,391,195,600.48
Award Actions
371
Average Action Value
11,836,106.73

About BOOZ ALLEN HAMILTON INC. federal contract activity

BOOZ ALLEN HAMILTON INC. recorded 371 FPDS awards over the last 10 years with total obligations of $4.39 billion, for an average award value of $11.84 million. The activity profile shows a concentrated federal contracting footprint with all identified obligations tied to a single agency and a single dominant NAICS code in the available data.

Agency mix and customer concentration

The Department of Veterans Affairs accounts for the full $4.39 billion and all 371 awards in the analysis window, indicating a highly concentrated agency relationship. This suggests the vendor’s federal spend in the observed period is driven entirely by VA demand rather than a distributed multi-agency portfolio.

Industry profile based on NAICS activity

All recorded obligations fall under NAICS 541512, Computer Systems Design Services, with 371 awards totaling $4.39 billion. The mix indicates a focused service profile centered on systems design and related IT work, with no diversification into other NAICS categories in the provided dataset.

Annual contract trend over the analysis window

Annual obligations remained at a high level across the most recent five years shown, ranging from $552.91 million in 2021 to $746.10 million in 2024. 2024 was the peak year in the provided trend, followed by $724.07 million in 2025, while award counts varied between 35 and 47, indicating steady but uneven annual activity.

How to interpret this page

This summary is based on FPDS-observed obligations for the vendor matched to CAGE 1D060 and UEI KHK6E1JW9C15 over the last 10 years. Agency, NAICS, and annual trend statements reflect only the records provided in the analysis window and should be interpreted as a snapshot of captured obligations, not a complete assessment of all possible contracting activity.

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 = '1D060'
        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
3600 VETERANS AFFAIRS, DEPARTMENT OF 4,391,195,600.48 4.39 billion 371

Insight

Over the last 10 years, BOOZ ALLEN HAMILTON INC. has 4.39 billion in obligated contract value across 371 awards, with an average award value of 11.84 million. Obligations are fully concentrated in the Department of Veterans Affairs, indicating a single-agency dependency in this period. This concentration suggests the vendor’s federal portfolio, as captured here, is not diversified across agencies.

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 = '1D060'
        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
541512 COMPUTER SYSTEMS DESIGN SERVICES 4,391,195,600.48 4.39 billion 371

Insight

Over the last 10 years, BOOZ ALLEN HAMILTON INC. shows complete NAICS concentration in 541512, Computer Systems Design Services. All $4.39 billion in obligated value and all 371 awards are associated with this single NAICS, indicating a highly focused procurement profile with no observable NAICS diversification in the provided period. The average award value is approximately $11.84 million, suggesting a recurring pattern of relatively large awards within this core service category.

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 = '1D060'
        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 724,067,967.41 724.07 million 46
2024 746,100,478.40 746.10 million 39
2023 712,908,946.85 712.91 million 35
2022 615,188,693.78 615.19 million 40
2021 552,908,912.01 552.91 million 47
2020 450,333,449.21 450.33 million 56
2019 256,946,016.31 256.95 million 51
2018 170,061,602.92 170.06 million 44
2017 162,679,533.59 162.68 million 13

Insight

BOOZ ALLEN HAMILTON INC. shows a strong upward obligation trend over the last 10 years, with total obligations increasing from $162.68 million in FY 2017 to $724.07 million in FY 2025. Award volume is more variable than dollars obligated, ranging from 13 awards in FY 2017 to 56 in FY 2020, while annual obligations remain concentrated in the most recent five years. Over the period, the vendor received $4.39 billion across 371 awards, with an average award value of $11.84 million, indicating a relatively high-dollar, lower-volume contracting profile.

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.