Federal Contractor

BP PRODUCTS NORTH AMERICA INC. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for BP PRODUCTS NORTH AMERICA INC. (CAGE 6HW96, UEI RDHYLFA8JAB4) covering obligations, award activity, and agency and NAICS concentration over the last 10 years.

BP PRODUCTS NORTH AMERICA INC. recorded 1,637 federal award actions and 7.31 billion in total obligated value during the last 10 years, with an average action value of 4,467,060.71. Most obligations were associated with the Defense Logistics Agency and NAICS 324110, Petroleum Refineries, while a small negative amount appears under the Department of Energy and NAICS 493190.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations peaked in 2022 and 2023, while 2025 data reflects only two award actions through the analysis window.

CAGE Code
6HW96
UEI
RDHYLFA8JAB4
Total Obligated
7.31 billion
7,312,578,392.09
Award Actions
1,637
Average Action Value
4,467,060.71

About BP PRODUCTS NORTH AMERICA INC. federal contract activity

BP PRODUCTS NORTH AMERICA INC. (CAGE 6HW96, UEI RDHYLFA8JAB4) received 1,637 awards totaling $7.31 billion over the last 10 years, for an average award value of $4.47 million. The obligation profile is highly concentrated, indicating a small number of recurring federal buyers and a dominant commodity/service base.

Agency mix and customer concentration

The Defense Logistics Agency accounted for essentially the entire observed obligation base, with 1,635 awards and $7.31 billion obligated. The Department of Energy shows two awards and a net negative $7,000 in obligations, which is immaterial relative to the overall total and likely reflects adjustment activity rather than a meaningful buying relationship.

Industry profile based on NAICS activity

NAICS 324110, Petroleum Refineries, mirrors the overall portfolio with 1,635 awards and $7.31 billion obligated, showing that BP PRODUCTS NORTH AMERICA INC.'s federal business is overwhelmingly tied to refined petroleum supply. NAICS 493190, Other Warehousing and Storage, appears only twice and at a net negative $7,000, suggesting a minor administrative or correction-related classification rather than a substantive secondary line of business.

Annual contract trend over the analysis window

Annual obligations have been volatile but materially elevated in recent years, rising from $629.06 million in 2021 to $1.67 billion in 2022 and $1.21 billion in 2023 before moderating to $663.88 million in 2024. Through 2025, obligations total $23.22 million across two awards, indicating that the current-year profile is still early and not directly comparable to full prior years.

How to interpret this page

This summary uses FPDS award data for the last 10 years, grouped by vendor identifiers and analyzed at the obligation level. Top agencies, NAICS codes, and annual trends are based on total obligated amounts and award counts in the provided dataset; negative obligations are retained as reported and may reflect deobligations, corrections, or other adjustments.

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 = '6HW96'
        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 7,312,585,392.09 7.31 billion 1,635
8900 ENERGY, DEPARTMENT OF -7,000.00 -7.00 thousand 2

Insight

BP PRODUCTS NORTH AMERICA INC. received 7.31 billion in obligations across 1,637 awards over the last 10 years, indicating a highly concentrated federal customer base. The Defense Logistics Agency accounted for nearly all activity, with 7.31 billion obligated across 1,635 awards. The Department of Energy shows only two awards and a net negative obligation of 7.0 thousand, which is immaterial relative to the total and does not materially affect the overall concentration pattern.

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 = '6HW96'
        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 7,312,585,392.09 7.31 billion 1,635
493190 OTHER WAREHOUSING AND STORAGE -7,000.00 -7.00 thousand 2

Insight

Over the last 10 years, BP PRODUCTS NORTH AMERICA INC. (CAGE 6HW96) has procurement activity overwhelmingly concentrated in NAICS 324110, Petroleum Refineries, with 1,635 awards and $7.31 billion obligated. This account for essentially all reported obligation volume and award activity in the period. NAICS 493190, Other Warehousing and Storage, appears only marginally, with 2 awards and a net negative obligation of $7,000, indicating no meaningful diversification beyond the primary petroleum refining 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 = '6HW96'
        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 23,218,747.52 23.22 million 2
2024 663,884,471.52 663.88 million 168
2023 1,212,685,763.20 1.21 billion 304
2022 1,666,179,284.34 1.67 billion 237
2021 629,063,462.26 629.06 million 178
2020 313,352,083.63 313.35 million 144
2019 652,780,412.75 652.78 million 211
2018 910,644,402.75 910.64 million 146
2017 1,042,805,726.04 1.04 billion 198
2016 197,964,038.08 197.96 million 49

Insight

BP PRODUCTS NORTH AMERICA INC. received $7.31 billion across 1,637 awards over the last 10 years, with a large share of obligations concentrated in 2022 ($1.67 billion) and 2023 ($1.21 billion). Obligations increased sharply from 2020 to a peak in 2022, then declined in 2023 and 2024, with 2025 currently minimal at $23.22 million across 2 awards. Award counts generally track the obligation pattern, with the highest activity in 2023 (304 awards) and lower levels in 2024 and 2025, indicating recent contraction after a period of elevated spending.

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.