Federal Contractor

FLUOR INTERCONTINENTAL INCORPORATED Federal Contract Obligations (Last Year)

FLUOR INTERCONTINENTAL INCORPORATED (CAGE 1CZV4, UEI XMJWLE5WFT29) received 48 federal award actions totaling $151.31 million in the last full year.

In the last full year, FLUOR INTERCONTINENTAL INCORPORATED obligated $151.31 million across 48 actions, with an average action value of $3.15 million. Most of the total came from the Department of the Army and Department of the Air Force, and the largest share of obligations was classified under NAICS 561210, Facilities Support Services.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the last full year and may include deobligations, as shown by the negative obligation value in one Navy row.

CAGE Code
1CZV4
UEI
XMJWLE5WFT29
Total Obligated
151.31 million
151,314,751.24
Award Actions
48
Average Action Value
3,152,390.65

About FLUOR INTERCONTINENTAL INCORPORATED federal contract activity

FLUOR INTERCONTINENTAL INCORPORATED (CAGE 1CZV4, UEI XMJWLE5WFT29) recorded $151.31 million in obligated awards across 48 transactions during the last full year, for an average award value of $3.15 million. The profile indicates a high-volume federal services vendor with spending concentrated in a small number of agencies and a dominant facilities-support workload.

Agency mix and customer concentration

The Department of the Army accounted for the majority of obligation volume at $98.16 million across 35 awards, followed by the Department of the Air Force at $53.99 million across 8 awards. Smaller activity appeared at DTRA and the Department of the Navy, with the Navy showing net negative obligations of $855.72 thousand, indicating deobligation or contract adjustment activity in the period.

Industry profile based on NAICS activity

Awards were overwhelmingly concentrated in NAICS 561210, Facilities Support Services, which represented $148.16 million across 46 awards and essentially defines the vendor's federal contract mix. The remaining obligations were a much smaller set of awards in Other Electric Power Generation and All Other Professional, Scientific, and Technical Services, suggesting limited diversification outside facilities-related work.

Annual contract trend over the analysis window

The annual trend shows all tracked obligations in 2025, totaling $151.31 million across 48 awards. With only one year in the analysis window, the data supports a point-in-time view rather than a multi-year growth or decline assessment.

How to interpret this page

This page is based on FPDS award-obligation data for the last full year and groups activity by vendor identity, agency, NAICS code, and award year. Totals reflect obligated amounts as reported in the source data and may include negative values where deobligations or adjustments were recorded.

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 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
2100 DEPT OF THE ARMY 98,160,047.42 98.16 million 35
5700 DEPT OF THE AIR FORCE 53,989,692.82 53.99 million 8
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 20,732.00 20.73 thousand 1
1700 DEPT OF THE NAVY -855,721.00 -855.72 thousand 4

Insight

During the last full year, FLUOR INTERCONTINENTAL INCORPORATED’s obligations were highly concentrated in the Department of the Army and Department of the Air Force, which together accounted for 99% of the firm’s $151.31 million total obligated. The Department of the Army was the primary customer at $98.16 million across 35 awards, while the Department of the Air Force obligated $53.99 million across 8 awards. Other agency activity was immaterial by comparison: DTRA obligated $20.73 thousand on 1 award, and the Department of the Navy shows a net negative obligation of $855.72 thousand across 4 awards.

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 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
561210 FACILITIES SUPPORT SERVICES 148,161,763.38 148.16 million 46
221119 OTHER ELECTRIC POWER GENERATION 3,132,255.86 3.13 million 1
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 20,732.00 20.73 thousand 1

Insight

During the last full year, FLUOR INTERCONTINENTAL INCORPORATED (CAGE 1CZV4) received $151.31 million across 48 awards, with an average award value of $3.15 million. Obligations were highly concentrated in NAICS 561210, Facilities Support Services, which accounted for $148.16 million and 46 awards, or nearly all activity in the period. The remaining obligations were minimal and limited to one award each in NAICS 221119 and 541990, indicating a narrow NAICS profile dominated by facilities support work.

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

Insight

During the last full year, FLUOR INTERCONTINENTAL INCORPORATED (CAGE 1CZV4) obligated $151.31 million across 48 awards, for an average award value of $3.15 million. The profile indicates moderate award dispersion, with funding spread across multiple actions rather than concentrated in a single obligation. Because only one annual period is provided, year-over-year trend direction cannot be assessed from this window alone.

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.