This vendor profile summarizes federal procurement activity for FLUOR INTERCONTINENTAL INCORPORATED over the last 5 years, including obligations, award counts, agencies, NAICS codes, and annual trends. Most of the recorded obligation is concentrated in NAICS 561210 Facilities Support Services and in awards from the Department of the Air Force and Department of the Army.
Federal Contractor
FLUOR INTERCONTINENTAL INCORPORATED Federal Contract Obligations (Last 5 Years)
FLUOR INTERCONTINENTAL INCORPORATED (CAGE 1CZV4, UEI XMJWLE5WFT29) received 261 awards totaling $927,682,082.15 over the last 5 years, led by Department of the Air Force and Department of the Army obligations.
Totals reflect readable FPDS obligation data for the stated analysis window and may include negative values where deobligations or adjustments occurred.
About FLUOR INTERCONTINENTAL INCORPORATED federal contract activity
FLUOR INTERCONTINENTAL INCORPORATED (CAGE 1CZV4, UEI XMJWLE5WFT29) recorded $927.68 million in obligated value across 261 FPDS awards over the last 5 years, for an average award value of $3.55 million. The profile is highly concentrated in defense-related contracting and reflects a large volume of awards with comparatively few agencies driving the majority of obligated dollars.
Agency mix and customer concentration
The DEPT OF THE AIR FORCE and DEPT OF THE ARMY account for nearly all obligated value, at $476.96 million and $453.36 million respectively. The NAVY shows a net negative obligated total of $2.65 million, while DTRA contributes only a marginal $20.73 thousand, indicating a sharply concentrated agency footprint with limited diversification beyond the major military departments.
Industry profile based on NAICS activity
Contract activity is overwhelmingly concentrated in NAICS 561210, Facilities Support Services, which represents $924.50 million across 257 awards and effectively defines the vendor's federal work mix. The remaining NAICS codes are immaterial by comparison, with only isolated awards in power generation, construction, professional services, and engineering services.
Annual contract trend over the analysis window
Annual obligations were strongest in 2021 at $594.91 million, then fell materially in 2022 to a negative net of $44.48 million before recovering in 2023 and continuing upward through 2024 and 2025. Award counts remained relatively steady across the period, suggesting the volatility is driven more by contract value adjustments than by changes in transaction volume.
How to interpret this page
This summary is based on FPDS award records associated with the vendor's CAGE code 1CZV4 and UEI XMJWLE5WFT29 over the last 5 years. Obligated values are aggregated by award, agency, NAICS code, and fiscal year; negative obligations are retained as reported to preserve the net financial picture.
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 = '1CZV4'
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 |
|---|---|---|---|---|
| 5700 | DEPT OF THE AIR FORCE | 476,956,485.78 | 476.96 million | 32 |
| 2100 | DEPT OF THE ARMY | 453,357,212.73 | 453.36 million | 218 |
| 9761 | DEFENSE THREAT REDUCTION AGENCY (DTRA) | 20,732.00 | 20.73 thousand | 1 |
| 1700 | DEPT OF THE NAVY | -2,652,348.36 | -2.65 million | 10 |
Insight
Over the last 5 years, FLUOR INTERCONTINENTAL INCORPORATED received $927.68 million across 261 awards, with obligations concentrated in two agencies: the Department of the Air Force ($476.96 million, 32 awards) and the Department of the Army ($453.36 million, 218 awards). Together, these two agencies account for nearly all reported obligations, indicating a highly concentrated Federal customer base. The Department of the Navy shows net negative obligations of $2.65 million across 10 awards, while DTRA contributed a minimal $20.73 thousand in one award.
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 = '1CZV4'
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 |
|---|---|---|---|---|
| 561210 | FACILITIES SUPPORT SERVICES | 924,503,618.98 | 924.50 million | 257 |
| 221119 | OTHER ELECTRIC POWER GENERATION | 3,132,255.86 | 3.13 million | 1 |
| 236220 | COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION | 24,975.31 | 24.98 thousand | 1 |
| 541990 | ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES | 20,732.00 | 20.73 thousand | 1 |
| 541330 | ENGINEERING SERVICES | 500.00 | 500.00 | 1 |
Insight
Over the last 5 years, FLUOR INTERCONTINENTAL INCORPORATED (CAGE 1CZV4) received 927.68 million across 261 awards, with procurement activity heavily concentrated in NAICS 561210, Facilities Support Services. That code accounts for 924.50 million and 257 awards, or nearly all obligated value and award volume in this period, indicating a highly focused contract profile. The remaining obligations are minimal and dispersed across four NAICS codes, with only one additional material award in 221119, Other Electric Power Generation, at 3.13 million.
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 = '1CZV4'
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 | 151,314,751.24 | 151.31 million | 48 |
| 2024 | 131,421,117.50 | 131.42 million | 41 |
| 2023 | 94,513,144.36 | 94.51 million | 50 |
| 2022 | -44,478,636.91 | -44.48 million | 64 |
| 2021 | 594,911,705.96 | 594.91 million | 58 |
Insight
FLUOR INTERCONTINENTAL INCORPORATED (CAGE 1CZV4) obligated $927.68 million across 261 awards over the last 5 years, with an average award value of $3.55 million. Obligations are highly concentrated in 2021, which accounted for $594.91 million, or roughly 64% of the 5-year total, indicating a significant peak year. Activity then declined sharply in 2022 to -$44.48 million, before recovering in 2023 through 2025 to $94.51 million, $131.42 million, and $151.31 million respectively, while award counts remained relatively steady between 41 and 64 annually.
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.