Federal Contractor

FLUOR FEDERAL PETROLEUM OPERATIONS, LLC Federal Contract Obligations (Last 5 Years)

Federal procurement profile for FLUOR FEDERAL PETROLEUM OPERATIONS, LLC (CAGE 6RT19, UEI KJDUB6XQDTN4) covering 76 awards and $790.57 million obligated over the last 5 years.

FLUOR FEDERAL PETROLEUM OPERATIONS, LLC received $790,570,953.60 in obligated federal awards across 76 actions in the last 5 years, with all recorded obligations attributed to the Department of Energy. The contract activity is concentrated in NAICS 561210, Facilities Support Services, and annual obligations ranged from $114.76 million to $193.05 million over the period.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and may change as FPDS records are updated or corrected.

CAGE Code
6RT19
UEI
KJDUB6XQDTN4
Total Obligated
790.57 million
790,570,953.60
Award Actions
76
Average Action Value
10,402,249.38

About FLUOR FEDERAL PETROLEUM OPERATIONS, LLC federal contract activity

FLUOR FEDERAL PETROLEUM OPERATIONS, LLC (CAGE 6RT19, UEI KJDUB6XQDTN4) recorded $790.57 million in FPDS obligations across 76 awards over the last 5 years, for an average award value of $10.40 million. The profile indicates a concentrated federal contracting footprint at the award and spending levels rather than broad multi-agency diversification.

Agency mix and customer concentration

All observed obligations in the analysis window were attributed to the Department of Energy (agency 8900), which accounted for the full $790.57 million and all 76 awards. This indicates a highly concentrated customer base and limited agency diversification in the available FPDS record.

Industry profile based on NAICS activity

All recorded obligations were associated with NAICS 561210, Facilities Support Services, totaling $790.57 million across 76 awards. The mix suggests the vendor’s federal work in this period was consistently aligned to facilities support requirements rather than a broader set of procurement categories.

Annual contract trend over the analysis window

Annual obligations were highest in 2021 and 2022 at $193.05 million and $191.12 million, respectively, then declined to $114.76 million in 2023 before rebounding to $155.14 million in 2024 and $136.50 million in 2025. Award counts followed a similar pattern, peaking at 17 in 2025 after a low of 13 in 2023, indicating continued but somewhat variable contract activity over the period.

How to interpret this page

This summary is based on FPDS records for the last 5 years tied to CAGE 6RT19 and UEI KJDUB6XQDTN4. Totals reflect obligated dollars and award counts as provided in the analysis set; agency, NAICS, and annual views are limited to the fields supplied and may reflect the current extraction rather than a complete recompilation of all underlying contract actions.

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 = '6RT19'
        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
8900 ENERGY, DEPARTMENT OF 790,570,953.60 790.57 million 76

Insight

Over the last 5 years, FLUOR FEDERAL PETROLEUM OPERATIONS, LLC’s obligated dollars are entirely concentrated within the Department of Energy, which accounts for the full $790.57 million in obligations across 76 awards. This indicates a highly focused customer profile with no observed agency diversification in the provided period. The average award value across the vendor’s portfolio is approximately $10.40 million, suggesting a mix of moderately sized obligations within a single-agency relationship.

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 = '6RT19'
        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 790,570,953.60 790.57 million 76

Insight

Over the last 5 years, FLUOR FEDERAL PETROLEUM OPERATIONS, LLC’s obligations are entirely concentrated in NAICS 561210, Facilities Support Services. The vendor received 76 awards totaling $790.57 million, with an average award value of $10.40 million, indicating a fully concentrated and relatively high-volume award profile in this category.

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 = '6RT19'
        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 136,500,039.00 136.50 million 17
2024 155,137,982.90 155.14 million 15
2023 114,760,707.20 114.76 million 13
2022 191,121,070.18 191.12 million 16
2021 193,051,154.32 193.05 million 15

Insight

Over the last five years, FLUOR FEDERAL PETROLEUM OPERATIONS, LLC (CAGE 6RT19) received $790.57 million across 76 awards, averaging $10.40 million per award. Obligations were concentrated in 2021 and 2022, which together accounted for $384.17 million, or roughly 49 percent of the five-year total. Annual obligations then declined in 2023 and remained below the 2021–2022 peak in 2024 and 2025, while award counts stayed relatively stable between 13 and 17 per year.

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.