Federal Contractor

SODEXO MANAGEMENT INC. Federal Contract Obligations (Last Year)

SODEXO MANAGEMENT INC. (CAGE 1EGB9, UEI VG33D4SQVLE3) received 36 federal award actions totaling $342,015,039.57 in the last full year.

In the last full year, SODEXO MANAGEMENT INC. recorded $342.02 million in obligated federal spending across 36 award actions. The Department of the Navy accounted for nearly all of that value, and NAICS 722310 Food Service Contractors dominated the work.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect obligations in the analysis window and may not equal subtotal sums due to rounding.

CAGE Code
1EGB9
UEI
VG33D4SQVLE3
Total Obligated
342.02 million
342,015,039.57
Award Actions
36
Average Action Value
9,500,417.76

About SODEXO MANAGEMENT INC. federal contract activity

SODEXO MANAGEMENT INC. recorded $342.02 million in obligated FPDS awards across 36 actions in the last full year, for an average award value of $9.50 million. The vendor’s activity is highly concentrated, with one agency accounting for nearly all reported obligations.

Agency mix and customer concentration

The DEPT OF THE NAVY dominated the relationship, obligating $341.55 million across 28 awards, which represents virtually all of the vendor’s annual spend. The remaining activity was materially smaller and spread across the DEPT OF THE ARMY, NATIONAL INSTITUTES OF HEALTH, FEDERAL BUREAU OF INVESTIGATION, and the PUBLIC BUILDINGS SERVICE.

Industry profile based on NAICS activity

Awarded obligations were concentrated in NAICS 722310, FOOD SERVICE CONTRACTORS, which accounted for $341.97 million and 34 awards. A much smaller remainder was classified under NAICS 722514, CAFETERIAS, GRILL BUFFETS, AND BUFFETS, totaling $42.89 thousand across 2 awards.

Annual contract trend over the analysis window

The annual trend shows all reported obligations in 2025, with $342.02 million across 36 awards. Because the analysis window is limited to the last full year, this view reflects a single-year snapshot rather than a multi-year trajectory.

How to interpret this page

This summary is based on FPDS award data for SODEXO MANAGEMENT INC. matched by CAGE code 1EGB9 and UEI VG33D4SQVLE3 over the last full year. Totals reflect obligated amounts as reported in FPDS and are grouped by agency, NAICS, and year; small variances may occur due to rounding.

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 1 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 341,546,668.05 341.55 million 28
2100 DEPT OF THE ARMY 406,532.52 406.53 thousand 3
7529 NATIONAL INSTITUTES OF HEALTH 42,890.05 42.89 thousand 2
1549 FEDERAL BUREAU OF INVESTIGATION 18,948.95 18.95 thousand 2
4740 PUBLIC BUILDINGS SERVICE 0.00 0.00 1

Insight

Over the last full year, SODEXO MANAGEMENT INC. received $342.02 million across 36 awards, with obligations highly concentrated in the Department of the Navy. Navy awards account for $341.55 million and 28 awards, representing virtually all obligated dollars in this period. Other agencies contributed only marginal activity: the Department of the Army obligated $406.53 thousand across 3 awards, while NIH and FBI obligations were below $50 thousand each.

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 1 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 341,972,149.52 341.97 million 34
722514 CAFETERIAS, GRILL BUFFETS, AND BUFFETS 42,890.05 42.89 thousand 2

Insight

SODEXO MANAGEMENT INC. shows extreme NAICS concentration in the last full year, with 722310 Food Service Contractors accounting for 341.97 million of 342.02 million in total obligated dollars and 34 of 36 awards. The remaining activity is minimal and limited to 722514 Cafeterias, Grill Buffets, and Buffets, with 42.89 thousand across 2 awards. This pattern indicates the vendor’s federal obligations are overwhelmingly concentrated in a single food service NAICS, with negligible diversification across other NAICS codes.

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 1 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

Insight

During the last full year, SODEXO MANAGEMENT INC. (CAGE 1EGB9) received $342.02 million in obligated value across 36 awards, for an average award value of about $9.5 million. Obligations are fully concentrated in 2025 within the 1-year window, so no year-over-year trend can be assessed from the provided data. The award profile suggests relatively high-value activity with moderate award count, indicating concentrated but not highly fragmented obligations.

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