Federal Contractor

SODEXO MANAGEMENT INC. Federal Contract Obligations (Last 5 Years)

SODEXO MANAGEMENT INC. recorded 212 federal award actions worth $1.33 billion over the last 5 years, under CAGE 1EGB9 and UEI VG33D4SQVLE3.

Most obligations went to the Department of the Navy, which accounted for $1.31 billion across 139 actions, with smaller totals at the Department of the Army and several civilian agencies. The vendor’s activity is concentrated in NAICS 722310, Food Service Contractors, and annual obligations were highest in 2025 at $342.02 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect readable and exact obligation figures from the last 5 years, and one NAICS line shows a negative amount tied to Facilities Support Services.

CAGE Code
1EGB9
UEI
VG33D4SQVLE3
Total Obligated
1.33 billion
1,328,325,487.80
Award Actions
212
Average Action Value
6,265,686.26

About SODEXO MANAGEMENT INC. federal contract activity

SODEXO MANAGEMENT INC. recorded $1.33 billion in obligated federal awards across 212 awards over the last 5 years, with an average award value of $6.27 million. The obligation base is highly concentrated, indicating a small number of large contracts drive most of the vendor’s federal activity.

Agency mix and customer concentration

The DEPT OF THE NAVY dominates the vendor’s federal footprint, accounting for $1.31 billion across 139 awards, or nearly all reported obligations. The DEPT OF THE ARMY is a distant second at $22.61 million across 34 awards, while NIH, FBI, and the Office of the Secretary represent only marginal activity.

Industry profile based on NAICS activity

Federal spending is overwhelmingly concentrated in NAICS 722310, FOOD SERVICE CONTRACTORS, with $1.35 billion across 195 awards. Smaller amounts appear in 722514 and 722320, while 561210 shows a negative net obligation of $19.73 million, suggesting deobligations or contract adjustments within that category.

Annual contract trend over the analysis window

Annual obligations were strongest in 2025 at $342.02 million, followed by $284.03 million in 2024 and $288.31 million in 2022. The pattern shows sustained year-to-year variability rather than a steady decline or growth trend, with award counts remaining relatively stable except for a higher count in 2021.

How to interpret this page

This summary is based on FPDS obligations attributed to SODEXO MANAGEMENT INC. using CAGE 1EGB9 and UEI VG33D4SQVLE3 over the last 5 years. Agency, NAICS, and annual totals reflect reported obligated dollars and award counts in the provided dataset; negative obligations are presented as reported and may reflect deobligations or corrections.

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 = '1EGB9'
        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
1700 DEPT OF THE NAVY 1,305,229,130.96 1.31 billion 139
2100 DEPT OF THE ARMY 22,609,440.11 22.61 million 34
7529 NATIONAL INSTITUTES OF HEALTH 399,656.19 399.66 thousand 9
1549 FEDERAL BUREAU OF INVESTIGATION 50,946.95 50.95 thousand 5
6901 OFFICE OF THE SECRETARY 23,185.19 23.19 thousand 2
6925 FEDERAL HIGHWAY ADMINISTRATION 13,128.40 13.13 thousand 1
4740 PUBLIC BUILDINGS SERVICE 0.00 0.00 22

Insight

Over the last 5 years, SODEXO MANAGEMENT INC. has received $1.33 billion across 212 awards, with obligations highly concentrated in the DEPT OF THE NAVY. Navy accounts for $1.31 billion and 139 awards, representing the clear dominant share of activity. The DEPT OF THE ARMY is a distant second at $22.61 million across 34 awards, while all other listed agencies together contribute less than $1 million, indicating a sharply concentrated agency mix with limited diversification.

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 = '1EGB9'
        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
722310 FOOD SERVICE CONTRACTORS 1,347,632,989.29 1.35 billion 195
722514 CAFETERIAS, GRILL BUFFETS, AND BUFFETS 399,656.19 399.66 thousand 9
722320 CATERERS 23,185.19 23.19 thousand 1
561210 FACILITIES SUPPORT SERVICES -19,730,342.87 -19.73 million 7

Insight

SODEXO MANAGEMENT INC. is heavily concentrated in NAICS 722310, Food Service Contractors, which accounts for 195 of 212 awards and about $1.35 billion in obligations over the last 5 years, effectively representing the vendor’s core federal business. The remaining obligations are minimal and dispersed across NAICS 722514, 722320, and 561210, with only small positive amounts in the food-service codes and a negative obligation total in Facilities Support Services. Overall, the profile indicates a highly specialized award mix with limited diversification beyond food service contracting.

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 = '1EGB9'
        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 342,015,039.57 342.02 million 36
2024 284,029,711.16 284.03 million 43
2023 230,528,282.60 230.53 million 40
2022 288,311,030.62 288.31 million 40
2021 183,441,423.85 183.44 million 53

Insight

Over the last 5 years, SODEXO MANAGEMENT INC. (CAGE 1EGB9) recorded $1.33 billion across 212 awards, with an average award value of $6.27 million. Obligations peaked in 2025 at $342.02 million, following a lower level in 2023 ($230.53 million) and a rebound in 2024 ($284.03 million) after 2022 ($288.31 million). Award counts were relatively stable from 2022 to 2025 at 36 to 43 per year, but 2021 stands out with the highest award count (53) and the lowest obligated amount ($183.44 million), indicating smaller average awards that year.

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.