Federal Contractor

CENTERRA GROUP, LLC Federal Contract Obligations (Last 10 Years)

CENTERRA GROUP, LLC (CAGE 1D415, UEI H4H3J7SJCT76) has 10-year federal obligations of $2.44 billion across 3,203 award actions.

CENTERRA GROUP, LLC’s federal activity is concentrated in security guard and patrol services, with smaller obligations in facilities support, support services, ambulance services, and limited logistics consulting. The largest agency relationships in the last 10 years are the Department of Energy and the U.S. Marshals Service, which together account for most of the vendor’s obligated value.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the last 10 years of readable FPDS obligations; annual values shown for 2021-2025 do not sum to the full 10-year total.

CAGE Code
1D415
UEI
H4H3J7SJCT76
Total Obligated
2.44 billion
2,440,648,446.53
Award Actions
3,203
Average Action Value
761,988.27

About CENTERRA GROUP, LLC federal contract activity

CENTERRA GROUP, LLC (CAGE 1D415, UEI H4H3J7SJCT76) recorded $2.44 billion in obligated federal awards across 3,203 actions over the last 10 years, with an average award value of $761,988.27. The company’s activity is concentrated in a relatively small set of recurring service contracts, indicating sustained use as a mission-support contractor rather than a sporadic award recipient.

Agency mix and customer concentration

The Department of Energy is the largest funding source at $963.44 million across 293 awards, followed closely by the U.S. Marshals Service at $779.45 million across 1,499 awards. U.S. Customs and Border Protection, the Department of the Navy, and Offices, Boards and Divisions also appear as meaningful buyers, showing a customer base that spans law enforcement, defense, and civilian mission-support organizations. The award counts suggest the U.S. Marshals Service relies on the vendor for smaller, more frequent obligations, while Energy accounts for fewer but materially larger awards.

Industry profile based on NAICS activity

The vendor’s portfolio is overwhelmingly centered on NAICS 561612, Security Guards and Patrol Services, which accounts for $2.24 billion and 2,606 awards. Secondary exposure appears in Facilities Support Services (NAICS 561210) and All Other Support Services (NAICS 561990), with a smaller amount in Ambulance Services (NAICS 621910). This mix indicates a core specialization in protective and facility-related services, with limited diversification outside that operating profile.

Annual contract trend over the analysis window

Annual obligations have remained substantial but have moderated from the recent peak years, with $370.89 million in 2022 and $339.97 million in 2023 before declining to $165.07 million in 2024 and $115.32 million in 2025 year-to-date. Award volume followed the same general pattern, with 435 awards in 2022, 407 in 2023, 276 in 2024, and 137 in 2025. The pattern suggests a business that remains active but is experiencing lower current-year obligated value than its recent high-water marks.

How to interpret this page

This summary is based on FPDS obligation data for the last 10 years and is limited to the vendor identifiers provided: CAGE 1D415 and UEI H4H3J7SJCT76. Top agencies, NAICS codes, and annual trends reflect obligated dollars and award counts within the stated analysis window; amounts may not tie exactly to current-year totals if the source data is year-to-date. No supplemental assumptions or external data 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 = '1D415'
        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 963,442,031.35 963.44 million 293
1544 U.S. MARSHALS SERVICE 779,445,003.78 779.45 million 1,499
7014 U.S. CUSTOMS AND BORDER PROTECTION 138,110,911.67 138.11 million 116
1700 DEPT OF THE NAVY 115,569,864.57 115.57 million 424
1501 OFFICES, BOARDS AND DIVISIONS 100,850,825.01 100.85 million 84
7001 OFFICE OF PROCUREMENT OPERATIONS 94,142,929.40 94.14 million 391
1344 US PATENT AND TRADEMARK OFFICE 89,251,273.64 89.25 million 29
5700 DEPT OF THE AIR FORCE 71,068,613.79 71.07 million 80
1406 DEPARTMENTAL OFFICES 43,710,875.28 43.71 million 62
3355 NATIONAL GALLERY OF ART 18,546,989.62 18.55 million 10

Insight

Over the last 10 years, CENTERRA GROUP, LLC’s obligations are highly concentrated at the top: the Department of Energy and U.S. Marshals Service account for 1.74 billion of the firm’s 2.44 billion in total obligated dollars, or about 71% combined. The Department of Energy represents the largest dollar share at 963.44 million across 293 awards, while the U.S. Marshals Service shows the highest award volume among the listed agencies at 1,499 awards and 779.45 million obligated. The remaining agencies are materially smaller and more dispersed, with no other agency above 138.11 million in obligated value.

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 = '1D415'
        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
561612 SECURITY GUARDS AND PATROL SERVICES 2,242,332,878.70 2.24 billion 2,606
561210 FACILITIES SUPPORT SERVICES 116,005,383.87 116.01 million 447
561990 ALL OTHER SUPPORT SERVICES 71,071,413.79 71.07 million 82
621910 AMBULANCE SERVICES 11,228,512.88 11.23 million 51
541614 PROCESS, PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES 17,007.11 17.01 thousand 2
238290 OTHER BUILDING EQUIPMENT CONTRACTORS 13,005.35 13.01 thousand 1
493110 GENERAL WAREHOUSING AND STORAGE 6,560.67 6.56 thousand 1
335912 PRIMARY BATTERY MANUFACTURING 5,352.00 5.35 thousand 1
488310 PORT AND HARBOR OPERATIONS 3,000.00 3.00 thousand 1
562910 REMEDIATION SERVICES 0.00 0.00 2

Insight

CENTERRA GROUP, LLC’s obligations over the last 10 years are highly concentrated in NAICS 561612, Security Guards and Patrol Services, which accounts for about $2.24 billion across 2,606 awards, or the clear majority of its $2.44 billion total. The next largest category, NAICS 561210, Facilities Support Services, is materially smaller at $116.0 million across 447 awards, followed by NAICS 561990 at $71.1 million across 82 awards. All remaining NAICS codes are individually immaterial, indicating a narrow contract profile dominated by security guard and patrol work with limited diversification into related support services.

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 = '1D415'
        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 115,321,701.81 115.32 million 137
2024 165,071,456.63 165.07 million 276
2023 339,966,379.36 339.97 million 407
2022 370,888,491.17 370.89 million 435
2021 302,724,331.94 302.72 million 462
2020 269,302,977.28 269.30 million 377
2019 274,109,905.45 274.11 million 345
2018 240,385,338.25 240.39 million 303
2017 215,033,146.15 215.03 million 408
2016 147,844,718.49 147.84 million 53

Insight

Over the last 10 years, CENTERRA GROUP, LLC has obligated $2.44 billion across 3,203 awards, with activity concentrated in the 2021–2023 period. Annual obligations increased from $147.84 million in 2016 to a peak of $370.89 million in 2022, then declined to $339.97 million in 2023, $165.07 million in 2024, and $115.32 million in 2025. Award volume generally followed the same pattern, peaking at 462 awards in 2021 and falling to 137 in 2025, indicating a recent contraction in both obligation value and procurement 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.