In the last full year, GEO GROUP, INC., THE received 157 award actions totaling $668,910,176.53 in obligated funding. Most obligations were from U.S. Immigration and Customs Enforcement and the U.S. Marshals Service, with spending concentrated in Security Guards and Patrol Services, Facilities Support Services, and correctional-related NAICS categories.
Federal Contractor
GEO GROUP, INC., THE Federal Contract Obligations (Last Year)
Federal procurement overview for GEO GROUP, INC., THE (CAGE 3JMR1, UEI JMLKZZ1NL2Z6) covering last full year obligations and award activity.
Figures reflect FPDS award actions in the selected analysis window and are shown as obligated dollars by agency, NAICS, and year.
About GEO GROUP, INC., THE federal contract activity
GEO GROUP, INC., THE (CAGE 3JMR1, UEI JMLKZZ1NL2Z6) received 668.91 million in obligated federal awards across 157 actions during the last full year, for an average award value of 4.26 million. The profile is dominated by large, recurring service obligations tied to detention, correctional, and related support functions.
Agency mix and customer concentration
U.S. Immigration and Customs Enforcement accounted for 527.83 million across 116 awards, representing the clear majority of obligations. U.S. Marshals Service was the second-largest customer at 140.92 million across 36 awards, while U.S. Customs and Border Protection contributed only 165.95 thousand across 5 awards, indicating a highly concentrated agency base.
Industry profile based on NAICS activity
The vendor’s obligations are concentrated in security and detention-adjacent service categories. Security Guards and Patrol Services led at 294.48 million across 57 awards, followed by Facilities Support Services at 222.33 million across 51 awards; additional spending appeared in Other Justice, Public Order, and Safety Activities and Correctional Institutions, reinforcing the correctional-services focus.
Annual contract trend over the analysis window
The annual trend shows 668.91 million in obligations in 2025, with 157 awards recorded in the analysis window. Because the data covers only the last full year, this snapshot indicates current-year concentration rather than multi-year movement. The award volume and dollar mix suggest a steady flow of comparatively large service actions rather than a small number of one-time procurements.
How to interpret this page
This summary is based on FPDS-observed obligations for the last full year, grouped by vendor, agency, NAICS, and year. Dollar figures are reported as obligated amounts and award counts reflect recorded actions in the analysis window; no adjustments were made beyond the supplied aggregates.
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 = '3JMR1'
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 |
|---|---|---|---|---|
| 7012 | U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT | 527,827,186.25 | 527.83 million | 116 |
| 1544 | U.S. MARSHALS SERVICE | 140,917,039.37 | 140.92 million | 36 |
| 7014 | U.S. CUSTOMS AND BORDER PROTECTION | 165,950.91 | 165.95 thousand | 5 |
Insight
Over the last full year, GEO GROUP, INC., THE received $668.91 million across 157 awards, with a high concentration in two agencies. U.S. Immigration and Customs Enforcement obligated $527.83 million across 116 awards, accounting for most of the vendor’s top-agency obligations, while the U.S. Marshals Service obligated $140.92 million across 36 awards. U.S. Customs and Border Protection represented a negligible share at $165.95 thousand across 5 awards, indicating a highly concentrated agency mix tied primarily to ICE and USMS.
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 = '3JMR1'
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 |
|---|---|---|---|---|
| 561612 | SECURITY GUARDS AND PATROL SERVICES | 294,480,435.00 | 294.48 million | 57 |
| 561210 | FACILITIES SUPPORT SERVICES | 222,332,462.18 | 222.33 million | 51 |
| 922190 | OTHER JUSTICE, PUBLIC ORDER, AND SAFETY ACTIVITIES | 76,911,199.03 | 76.91 million | 15 |
| 922140 | CORRECTIONAL INSTITUTIONS | 75,186,080.32 | 75.19 million | 34 |
Insight
Over the last full year, GEO GROUP, INC., THE received $668.91 million across 157 awards, with obligations concentrated in a small set of NAICS codes. Security Guards and Patrol Services (NAICS 561612) led with $294.48 million across 57 awards, followed by Facilities Support Services (NAICS 561210) at $222.33 million across 51 awards, together accounting for the majority of obligated dollars. The remaining obligations were distributed across Other Justice, Public Order, and Safety Activities (NAICS 922190) at $76.91 million and Correctional Institutions (NAICS 922140) at $75.19 million, indicating a procurement profile centered on security, facilities, and correctional 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 = '3JMR1'
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 | 668,910,176.53 | 668.91 million | 157 |
Insight
In the last full year, GEO GROUP, INC., THE recorded $668.91 million in obligated awards across 157 awards, averaging $4.26 million per award. The activity is concentrated in a single annual period, indicating all observed obligations in the 1-year window fall within 2025. This level of obligation suggests a relatively high-value award profile with moderate distribution across multiple awards rather than reliance on a small number of transactions.
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.