PETRO STAR INC. recorded 3,272 award actions and $1,072,385,265.85 in obligated federal spending in the last 5 years, with nearly all activity tied to the Defense Logistics Agency. The profile is dominated by NAICS 324110 Petroleum Refineries, and annual obligations ranged from $105.89 million in 2021 to $292.11 million in 2023.
Federal Contractor
PETRO STAR INC. Federal Contract Obligations (Last 5 Years)
Federal procurement profile for PETRO STAR INC. (CAGE 1FZR6, UEI JGSGGJJTAMK1) covering obligations, awards, agencies, and NAICS activity over the last 5 years.
Negative obligations and small cross-agency or cross-NAICS amounts reflect adjustments in the underlying FPDS data.
About PETRO STAR INC. federal contract activity
PETRO STAR INC. (CAGE 1FZR6, UEI JGSGGJJTAMK1) recorded $1.07 billion in obligated federal awards across 3,272 actions over the last 5 years, for an average award value of $327,746.10. The company’s federal activity is highly concentrated, with the vast majority of obligations tied to a single defense customer base and a primary petroleum-refining scope.
Agency mix and customer concentration
The Defense Logistics Agency accounts for essentially all activity, with $1.07 billion and 3,256 awards, indicating a concentrated buying relationship. Smaller award volume appears at NOAA, BLM, the Department of the Army, and the U.S. Coast Guard, but these agencies represent only marginal obligations relative to DLA and include minor negative adjustments in two cases.
Industry profile based on NAICS activity
NAICS 324110, Petroleum Refineries, dominates the vendor’s profile with $1.07 billion across 3,268 awards, showing that federal spend is overwhelmingly aligned to refined petroleum supply. Secondary classifications are limited to small obligations in 324191 and a single negative adjustment under 332439, which does not materially change the overall industry concentration.
Annual contract trend over the analysis window
Annual obligations peaked in 2023 at $292.11 million, remained elevated in 2022 and 2024, and then declined to $175.26 million in 2025. Award counts followed a similar pattern, rising from 517 in 2021 to 763 in 2024 before easing to 615 in 2025, suggesting sustained but somewhat lower recent activity than the prior two years.
How to interpret this page
This summary is based on FPDS-observed obligations and award counts associated with PETRO STAR INC. for the last 5 years, using the provided CAGE code and UEI to identify the vendor. Agency, NAICS, and annual trends are derived from the supplied aggregated totals; negative values reflect deobligations or adjustments included in the source 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 = '1FZR6'
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 | 1,072,324,511.83 | 1.07 billion | 3,256 |
| 1330 | NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION | 56,129.80 | 56.13 thousand | 10 |
| 1422 | BUREAU OF LAND MANAGEMENT | 35,263.04 | 35.26 thousand | 4 |
| 2100 | DEPT OF THE ARMY | -1,845.00 | -1.84 thousand | 1 |
| 7008 | U.S. COAST GUARD | -28,793.82 | -28.79 thousand | 1 |
Insight
Over the last 5 years, PETRO STAR INC. received 99.99% of its $1.07 billion in obligations from the Defense Logistics Agency, with 3,256 of 3,272 awards, indicating a highly concentrated customer base. The remaining agencies accounted for only marginal obligations: NOAA ($56.13 thousand; 10 awards) and BLM ($35.26 thousand; 4 awards), while the Army and Coast Guard posted small negative obligations. This pattern suggests the vendor’s federal activity is overwhelmingly driven by DLA, with limited and sporadic business elsewhere.
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 = '1FZR6'
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 | 1,072,353,844.10 | 1.07 billion | 3,268 |
| 324191 | PETROLEUM LUBRICATING OIL AND GREASE MANUFACTURING | 33,266.75 | 33.27 thousand | 3 |
| 332439 | OTHER METAL CONTAINER MANUFACTURING | -1,845.00 | -1.84 thousand | 1 |
Insight
Over the last 5 years, PETRO STAR INC. (CAGE 1FZR6) shows extreme concentration in NAICS 324110, Petroleum Refineries, which accounts for $1.072 billion across 3,268 awards and represents essentially all reported obligations. NAICS 324191, Petroleum Lubricating Oil and Grease Manufacturing, is a distant secondary area at $33.3 thousand over 3 awards, indicating only minor diversification beyond the core refineries activity. NAICS 332439, Other Metal Container Manufacturing, reflects a single negative obligation of $1.8 thousand, which has no material effect on the vendor’s overall profile.
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 = '1FZR6'
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 | 175,258,600.86 | 175.26 million | 615 |
| 2024 | 211,757,570.40 | 211.76 million | 763 |
| 2023 | 292,110,553.10 | 292.11 million | 749 |
| 2022 | 287,373,104.47 | 287.37 million | 628 |
| 2021 | 105,885,437.02 | 105.89 million | 517 |
Insight
PETRO STAR INC. (CAGE 1FZR6) obligated $1.07 billion across 3,272 awards over the last 5 years, with an average award value of $327,746. Obligation activity is concentrated in 2022–2024, which together account for $791.24 million, or about 74 percent of the 5-year total. Annual obligations increased sharply from $105.89 million in 2021 to a peak of $292.11 million in 2023, then declined to $211.76 million in 2024 and $175.26 million in 2025, while award counts remained relatively high across the period.
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.