Federal Contractor

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

Federal procurement profile for BOOZ ALLEN HAMILTON INC. (CAGE 1D060, UEI KHK6E1JW9C15) covering obligations, awards, agencies, and NAICS activity over the last 5 years.

BOOZ ALLEN HAMILTON INC. recorded 207 award actions and $3.35 billion in obligated value in the last 5 years, with all obligations tied to the Department of Veterans Affairs. The vendor's activity is concentrated in NAICS 541512, Computer Systems Design Services, and annual obligations have stayed above $552.9 million each year in the period shown.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect readable and exact obligation values from FPDS-style award records for the last 5 years and should be reviewed alongside the underlying actions.

CAGE Code
1D060
UEI
KHK6E1JW9C15
Total Obligated
3.35 billion
3,351,174,998.45
Award Actions
207
Average Action Value
16,189,251.20

About BOOZ ALLEN HAMILTON INC. federal contract activity

BOOZ ALLEN HAMILTON INC. (CAGE 1D060, UEI KHK6E1JW9C15) recorded $3.35 billion in obligations across 207 FPDS awards over the last 5 years, with an average award value of $16.19 million. The obligation base is concentrated and consistent, indicating sustained federal demand at relatively large contract values rather than a broad volume of small awards.

Agency mix and customer concentration

The vendor’s federal footprint in the analysis window is entirely concentrated in the VETERANS AFFAIRS, DEPARTMENT OF, which accounts for all $3.35 billion in obligations and all 207 awards. This indicates a highly focused customer relationship rather than a diversified multi-agency portfolio.

Industry profile based on NAICS activity

All observed obligations fall under NAICS 541512, COMPUTER SYSTEMS DESIGN SERVICES, with $3.35 billion across 207 awards. The NAICS profile suggests the vendor’s activity in this period was centered on information systems and related technical support work rather than a mixed services portfolio.

Annual contract trend over the analysis window

Annual obligations increased from $552.91 million in 2021 to a peak of $746.10 million in 2024, before easing slightly to $724.07 million in 2025. Award counts fluctuated between 35 and 47 per year, with the highest count in 2021 and the lowest in 2023, indicating stable but uneven year-to-year volume alongside sustained high-dollar obligations.

How to interpret this page

This summary uses FPDS-observed obligations tied to the vendor’s CAGE code 1D060 and UEI KHK6E1JW9C15 over the last five years. Agency, NAICS, and annual trend views are based on obligated dollars and award counts within the provided analysis window; no additional sources or assumptions were used.

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 5 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 3,351,174,998.45 3.35 billion 207

Insight

Over the last 5 years, BOOZ ALLEN HAMILTON INC. received 3.35 billion in obligations across 207 awards, for an average award value of about 16.2 million. All recorded obligations in this section are concentrated at the Department of Veterans Affairs, indicating a highly concentrated agency relationship with no other agencies reflected in the provided data. This pattern suggests the vendor’s recent federal activity is dominated by a single-agency portfolio rather than a diversified agency mix.

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 5 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 3,351,174,998.45 3.35 billion 207

Insight

Over the last 5 years, BOOZ ALLEN HAMILTON INC. received $3.35 billion across 207 awards, all associated with NAICS 541512, Computer Systems Design Services. This indicates complete concentration of obligated dollars in a single NAICS code, with no observable diversification across other industries in the provided data. The average award value of about $16.2 million suggests a portfolio characterized by repeated mid- to large-dollar 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 5 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

Insight

Over the last 5 years, BOOZ ALLEN HAMILTON INC. (CAGE 1D060) obligated $3.35 billion across 207 awards, averaging $16.2 million per award. Annual obligations are relatively stable within a narrow band of $552.9 million to $746.1 million, with a low in 2021 followed by higher levels in 2022 through 2025. Award counts range from 35 to 47 per year, indicating moderate dispersion in transaction volume without a strong upward or downward pattern.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.