Federal Contractor

PETROMAX REFINING COMPANY LLC Federal Contract Obligations (Last 10 Years)

PETROMAX REFINING COMPANY LLC has received 989 federal award actions totaling $3.31 billion over the last 10 years, all from the Defense Logistics Agency.

Federal procurement records show PETROMAX REFINING COMPANY LLC (CAGE 3G8M1, UEI YD3QNKMHEFJ8) with sustained obligations in petroleum refining work. Its awards are concentrated in NAICS 324110, Petroleum Refineries, and average $3,349,624.98 per action.

Generated at 03/21/2026

Analysis period: Last 10 years

This page summarizes FPDS award data for the last 10 years and reflects obligated amounts as reported in the provided analysis window.

CAGE Code
3G8M1
UEI
YD3QNKMHEFJ8
Total Obligated
3.31 billion
3,312,779,108.63
Award Actions
989
Average Action Value
3,349,624.98

About PETROMAX REFINING COMPANY LLC federal contract activity

PETROMAX REFINING COMPANY LLC (CAGE 3G8M1, UEI YD3QNKMHEFJ8) recorded 3.31 billion in FPDS obligations across 989 awards over the last 10 years, with an average award value of 3.35 million. The profile indicates a high-volume, large-dollar contract base concentrated in a single procurement channel and industry classification.

Agency mix and customer concentration

All recorded obligations in the analysis window are associated with the Defense Logistics Agency, which accounts for the full 3.31 billion and all 989 awards. This indicates an exclusively DLA-focused federal business relationship rather than a diversified agency customer base.

Industry profile based on NAICS activity

The vendor’s federal contracting activity is entirely concentrated in NAICS 324110, Petroleum Refineries, matching the full 3.31 billion and 989 awards. This is a fully aligned industrial profile with no visible diversification across other NAICS categories in the period reviewed.

Annual contract trend over the analysis window

Annual obligations for the years provided show substantial year-to-year variation, rising from 393.06 million in 2021 to a peak of 674.73 million in 2022, then moderating to 549.90 million in 2023 and 487.43 million in 2024 before reaching 342.78 million in 2025. Award counts remained high throughout the period, ranging from 64 in 2025 to 105 in 2021, suggesting sustained contracting activity even as obligated dollars fluctuated.

How to interpret this page

This summary is based on FPDS obligation data for the last 10 years and reflects only the values provided in the supplied dataset. Totals are aggregated by vendor identity using CAGE code 3G8M1 and UEI YD3QNKMHEFJ8, with agency, NAICS, and annual views derived from the same award population.

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 = '3G8M1'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 3,312,779,108.63 3.31 billion 989

Insight

Over the last 10 years, PETROMAX REFINING COMPANY LLC’s obligations are fully concentrated with the Defense Logistics Agency, which accounts for the entire $3.31 billion in reported obligated value across 989 awards. This indicates a highly concentrated agency relationship with no diversification across other agencies in the provided data. The average award value is approximately $3.35 million, suggesting a pattern of repeated medium-scale obligations within a single customer portfolio.

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 = '3G8M1'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 3,312,779,108.63 3.31 billion 989

Insight

Over the last 10 years, PETROMAX REFINING COMPANY LLC’s federal obligations are fully concentrated in NAICS 324110, Petroleum Refineries, totaling $3.31 billion across 989 awards. This indicates a highly specialized award profile with no observed diversification across other NAICS categories in the provided period. The average award value of approximately $3.35 million suggests a mix of recurring obligations at a moderate scale rather than reliance on a small number of very 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 = '3G8M1'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 342,778,145.02 342.78 million 64
2024 487,429,160.75 487.43 million 99
2023 549,896,292.38 549.90 million 98
2022 674,728,601.79 674.73 million 96
2021 393,058,573.44 393.06 million 105
2020 197,659,492.01 197.66 million 151
2019 212,861,887.55 212.86 million 130
2018 297,711,668.36 297.71 million 164
2017 156,655,287.33 156.66 million 82

Insight

Over the last 10 years, PETROMAX REFINING COMPANY LLC (CAGE 3G8M1) obligated $3.31 billion across 989 awards, averaging about $3.35 million per award. Obligations were concentrated in the more recent period, rising from $156.66 million in 2017 to a peak of $674.73 million in 2022, then remaining elevated in 2023 and 2024 before declining to $342.78 million in 2025. Award counts were highest in 2018 and 2020, indicating a broader distribution of smaller awards in those years, while the largest dollar years did not correspond to the highest award volumes.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.