This vendor page summarizes federal procurement activity for SUNSHINE MINTING, INC. over the last 5 years. The record shows 415.06 million obligated across 139 award actions, with the United States Mint accounting for all reported obligations in this analysis window.
Federal Contractor
SUNSHINE MINTING, INC. Federal Contract Obligations (Last 5 Years)
SUNSHINE MINTING, INC. (CAGE 1XMQ7, UEI FBNUDKPN7F45) recorded 415.06 million in federal obligations across 139 awards in the last 5 years, almost entirely from the United States Mint.
Amounts reflect obligated dollars in the analysis window and may not match totals outside this FPDS query scope.
About SUNSHINE MINTING, INC. federal contract activity
SUNSHINE MINTING, INC. (CAGE 1XMQ7, UEI FBNUDKPN7F45) recorded 415.06 million in obligated contract value across 139 awards in the last 5 years, for an average award value of 2.99 million. The award history is highly concentrated, with one agency accounting for the full observed obligation total.
Agency mix and customer concentration
All observed obligations were awarded by the UNITED STATES MINT (agency 2044), which accounted for 415.06 million across 139 awards. This indicates a single-agency relationship with no visible agency diversification in the review period.
Industry profile based on NAICS activity
Contracting activity is concentrated in NAICS 331410, NONFERROUS METAL (EXCEPT ALUMINUM) SMELTING AND REFINING, which represents 318.92 million across 22 awards. NAICS 332999, ALL OTHER MISCELLANEOUS FABRICATED METAL PRODUCT MANUFACTURING, adds 95.88 million across 111 awards, while the remaining NAICS codes contribute only immaterial amounts by comparison.
Annual contract trend over the analysis window
Obligations peaked in 2021 at 334.18 million across 45 awards, then dropped sharply to 16.48 million in 2022. Activity remained materially lower in 2023 and 2024 before a modest increase in 2025 to 16.87 million across 23 awards, suggesting the period after 2021 reflects a materially different funding profile than the spike year.
How to interpret this page
This summary uses FPDS award records associated with CAGE 1XMQ7 and UEI FBNUDKPN7F45 over the last 5 years. Obligated amounts, award counts, agency shares, NAICS concentration, and annual trend values are based only on the data provided for the analysis window.
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 = '1XMQ7'
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 |
|---|---|---|---|---|
| 2044 | UNITED STATES MINT | 415,057,380.44 | 415.06 million | 139 |
Insight
Over the last 5 years, SUNSHINE MINTING, INC. received $415.06 million across 139 awards, for an average award value of about $2.99 million. Obligations are fully concentrated in a single agency, the United States Mint (agency 2044), which accounts for 100% of reported obligated dollars and all awards in this window. This indicates a highly concentrated vendor-agency relationship with no diversification across other agencies in the provided period.
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 = '1XMQ7'
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 |
|---|---|---|---|---|
| 331410 | NONFERROUS METAL (EXCEPT ALUMINUM) SMELTING AND REFINING | 318,920,522.87 | 318.92 million | 22 |
| 332999 | ALL OTHER MISCELLANEOUS FABRICATED METAL PRODUCT MANUFACTURING | 95,884,450.06 | 95.88 million | 111 |
| 339999 | ALL OTHER MISCELLANEOUS MANUFACTURING | 219,088.51 | 219.09 thousand | 3 |
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 33,319.00 | 33.32 thousand | 3 |
Insight
Over the last 5 years, SUNSHINE MINTING, INC. derived most obligations from NAICS 331410, Nonferrous Metal (Except Aluminum) Smelting and Refining, at $318.92 million across 22 awards, representing about 76.9% of total obligated dollars. NAICS 332999, All Other Miscellaneous Fabricated Metal Product Manufacturing, accounts for the next largest share at $95.88 million across 111 awards, indicating a much higher award volume but lower average dollar value than 331410. The remaining NAICS codes, 339999 and 541715, are immaterial at $252.4 thousand combined, showing a highly concentrated obligation profile in two manufacturing-related categories.
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 = '1XMQ7'
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 | 16,872,173.93 | 16.87 million | 23 |
| 2024 | 28,529,824.99 | 28.53 million | 32 |
| 2023 | 19,000,451.63 | 19.00 million | 24 |
| 2022 | 16,477,191.60 | 16.48 million | 15 |
| 2021 | 334,177,738.29 | 334.18 million | 45 |
Insight
SUNSHINE MINTING, INC. received $415.06 million across 139 awards over the last 5 years, with an average award value of $2.99 million. Obligations are highly concentrated in 2021, which accounts for $334.18 million and 45 awards, far exceeding all other years combined. After 2021, annual obligations declined to a much lower range of $16.48 million to $28.53 million, with award counts between 15 and 32, indicating a materially reduced but still active recent procurement profile.
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.