Federal Contractor

VALERO MARKETING AND SUPPLY COMPANY Federal Contract Obligations (Last 5 Years)

VALERO MARKETING AND SUPPLY COMPANY (CAGE 1QSA0, UEI CQXWTJPKQJ73) received 1,122 federal award actions totaling $5.35 billion over the last five years, led by the Defense Logistics Agency.

This FPDS vendor profile summarizes federal procurement activity for VALERO MARKETING AND SUPPLY COMPANY during the last five years. The company’s obligations are concentrated with the Defense Logistics Agency and align entirely with NAICS 324110, Petroleum Refineries.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals and trends reflect readable FPDS query outputs for the stated analysis window; award counts and obligations are based on the provided agency, NAICS, and annual summary rows.

CAGE Code
1QSA0
UEI
CQXWTJPKQJ73
Total Obligated
5.35 billion
5,347,553,865.68
Award Actions
1,122
Average Action Value
4,766,090.78

About VALERO MARKETING AND SUPPLY COMPANY federal contract activity

VALERO MARKETING AND SUPPLY COMPANY (CAGE 1QSA0, UEI CQXWTJPKQJ73) recorded $5.35 billion in FPDS obligations across 1,122 awards over the last 5 years, with an average award value of $4.77 million. The profile indicates a high-volume, large-dollar procurement relationship rather than a broad spread of small transactions.

Agency mix and customer concentration

All observed obligations in the analysis window were concentrated in the DEFENSE LOGISTICS AGENCY, which accounted for the full $5.35 billion and all 1,122 awards. This level of concentration indicates a single-agency procurement profile with no diversification across other federal buyers in the provided data.

Industry profile based on NAICS activity

The spend is entirely associated with NAICS 324110, Petroleum Refineries, matching the vendor’s core business activity. With all obligations and awards tied to this code, the portfolio shows no NAICS diversification in the reported period.

Annual contract trend over the analysis window

Annual obligations remained above $900 million in each year of the five-year window, ranging from $936.81 million in 2021 to a peak of $1.25 billion in 2023. Award volume also increased in 2025 to 301 awards, after 187 in 2021, 198 in 2022, 181 in 2023, and 255 in 2024, indicating sustained and materially scaled contracting activity.

How to interpret this page

This summary uses the provided FPDS query outputs for the last 5 years and reflects only the metrics supplied in the source data. Agency, NAICS, and annual trend statements are based on obligated dollars and award counts reported in the dataset, without extrapolation beyond those records.

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 = '1QSA0'
        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 5,347,553,865.68 5.35 billion 1,122

Insight

Over the last 5 years, VALERO MARKETING AND SUPPLY COMPANY’s Federal obligations are fully concentrated within the Defense Logistics Agency, accounting for the entire $5.35 billion obligated across 1,122 awards. This indicates a highly concentrated agency relationship with no observed award activity in the provided period outside DLA. The average award value of about $4.77 million suggests a large number of recurring transactions rather than a small set of very large 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 = '1QSA0'
        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 5,347,553,865.68 5.35 billion 1,122

Insight

Over the last 5 years, VALERO MARKETING AND SUPPLY COMPANY’s federal obligations are fully concentrated in NAICS 324110, Petroleum Refineries, accounting for the full $5.35 billion across 1,122 awards. This indicates a highly focused procurement profile with no diversification across additional NAICS codes in the provided data. The average award value of about $4.77 million suggests a recurring award pattern within a single industry classification.

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 = '1QSA0'
        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 1,012,669,463.95 1.01 billion 301
2024 1,111,646,751.80 1.11 billion 255
2023 1,253,002,959.17 1.25 billion 181
2022 1,033,424,609.98 1.03 billion 198
2021 936,810,080.78 936.81 million 187

Insight

Over the last 5 years, VALERO MARKETING AND SUPPLY COMPANY (CAGE 1QSA0) obligated $5.35 billion across 1,122 awards, averaging $4.77 million per award. Annual obligations were relatively stable at roughly $0.94 billion to $1.25 billion, with a high point in 2023 ($1.25 billion) and a decline in 2025 to $1.01 billion. Award volume increased in 2025 to 301 awards, indicating a higher count of smaller obligations relative to prior 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.