Federal Contractor

TESORO REFINING & MARKETING COMPANY LLC Federal Contract Obligations (Last 5 Years)

Federal procurement profile for TESORO REFINING & MARKETING COMPANY LLC (CAGE 1W6E8, UEI EEATP9DASFP1) covering obligations and award activity over the last 5 years.

TESORO REFINING & MARKETING COMPANY LLC recorded 565 federal award actions totaling $811,911,631.49 in obligated value over the last 5 years, with an average action value of $1,437,011.73. Defense Logistics Agency accounted for all reported obligations in this window, and NAICS 324110, Petroleum Refineries, matches the full award total.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations were concentrated in 2021 and 2022, with a smaller amount reported in 2023.

CAGE Code
1W6E8
UEI
EEATP9DASFP1
Total Obligated
811.91 million
811,911,631.49
Award Actions
565
Average Action Value
1,437,011.73

About TESORO REFINING & MARKETING COMPANY LLC federal contract activity

TESORO REFINING & MARKETING COMPANY LLC recorded $811.91 million in obligated federal awards across 565 actions over the last 5 years, with an average award value of $1.44 million. The vendor profile is concentrated in a single CAGE/UEI pairing, indicating a stable identity in FPDS reporting. Award volume and dollars are substantial but highly concentrated in a narrow procurement footprint.

Agency mix and customer concentration

All observed obligations in this period came from the Defense Logistics Agency, which accounted for the full $811.91 million and all 565 awards. This indicates a single-agency dependency profile rather than a diversified federal customer base. The concentration suggests performance and demand are closely tied to DLA fuel and petroleum procurement requirements.

Industry profile based on NAICS activity

All recorded obligations were placed under NAICS 324110, Petroleum Refineries, matching the vendor’s core industrial classification. The award count and dollar value both align entirely to this NAICS, showing no mix across other product or service categories in the available period. This is a highly specialized procurement profile centered on refined petroleum supply.

Annual contract trend over the analysis window

Annual obligations were heavily front-loaded in 2021 and 2022, with $374.11 million across 306 awards in 2021 and $421.92 million across 239 awards in 2022. Activity fell sharply in 2023 to $15.88 million across 20 awards, indicating a pronounced contraction after two high-obligation years. The pattern points to volatile year-to-year buying levels rather than a steady award cadence.

How to interpret this page

This summary uses FPDS award data for the vendor’s CAGE code 1W6E8 and UEI EEATP9DASFP1 over the last 5 years. Metrics reflect total obligated dollars, award counts, and annual aggregation as provided, with concentration assessed from the listed top agency and NAICS results. No additional source attributes, contract types, or performance details were inferred beyond the supplied data.

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 = '1W6E8'
        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
97AS DEFENSE LOGISTICS AGENCY 811,911,631.49 811.91 million 565

Insight

Over the last 5 years, TESORO REFINING & MARKETING COMPANY LLC’s obligations under CAGE 1W6E8 were fully concentrated within a single agency: the Defense Logistics Agency. DLA accounted for the entire $811.91 million in obligations across 565 awards, indicating complete agency concentration and no observed distribution across other agencies in this period. The average award value was $1.44 million, suggesting a large volume of moderately sized awards rather than a small number of high-value actions.

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 = '1W6E8'
        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
324110 PETROLEUM REFINERIES 811,911,631.49 811.91 million 565

Insight

Over the last 5 years, TESORO REFINING & MARKETING COMPANY LLC’s federal obligations are fully concentrated in NAICS 324110, Petroleum Refineries. The vendor received 565 awards totaling $811.91 million, indicating a highly concentrated award profile with all recorded obligations tied to a single NAICS code. The average award value of $1.44 million suggests a pattern of repeated procurement activity rather than a small number of large awards.

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 = '1W6E8'
        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
2023 15,882,226.72 15.88 million 20
2022 421,917,625.46 421.92 million 239
2021 374,111,779.31 374.11 million 306

Insight

TESORO REFINING & MARKETING COMPANY LLC (CAGE 1W6E8) obligated $811.91 million across 565 awards in the last 5 years, with an average award value of $1.44 million. Obligation activity is highly concentrated in 2021 and 2022, which together account for the large majority of the reported dollars and awards, including $374.11 million across 306 awards in 2021 and $421.92 million across 239 awards in 2022. By comparison, 2023 declined sharply to $15.88 million across 20 awards, indicating a significant drop in both volume and funding after the prior two years.

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.