Federal Contractor

PRECIOUS A-MARK METALS INC Federal Contract Obligations (Last 10 Years)

PRECIOUS A-MARK METALS INC (CAGE 3DXE7, UEI CJZ8EW1Q7JJ6) has 3.35 billion in obligated federal awards across 806 actions in the last 10 years.

All recorded obligations for PRECIOUS A-MARK METALS INC are with the UNITED STATES MINT, totaling 3,351,144,062.28 across 806 award actions. Most obligations fall under NAICS 331491 for nonferrous metal rolling, drawing, and extruding, with additional activity in NAICS 331410 for nonferrous metal smelting and refining.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations peaked in 2023 at 796.61 million, then declined in 2024 and 2025 based on the current analysis window.

CAGE Code
3DXE7
UEI
CJZ8EW1Q7JJ6
Total Obligated
3.35 billion
3,351,144,062.28
Award Actions
806
Average Action Value
4,157,746.97

About PRECIOUS A-MARK METALS INC federal contract activity

PRECIOUS A-MARK METALS INC (CAGE 3DXE7, UEI CJZ8EW1Q7JJ6) recorded $3.35 billion in obligations across 806 awards over the last 10 years, with an average award value of $4.16 million. The profile indicates sustained, high-value federal procurement activity concentrated in a single civilian customer base.

Agency mix and customer concentration

All recorded obligations in the analysis window were awarded by the UNITED STATES MINT, which accounted for the full $3.35 billion and all 806 awards. This indicates an exceptionally concentrated agency relationship with no observable diversification across other federal buyers in the provided data.

Industry profile based on NAICS activity

The vendor’s obligations are dominated by NAICS 331491, Nonferrous Metal (Except Copper and Aluminum) Rolling, Drawing, and Extruding, with $2.81 billion across 769 awards. The remaining $545.85 million and 37 awards fall under NAICS 331410, Nonferrous Metal (Except Aluminum) Smelting and Refining, showing a focused metals-processing profile with limited secondary activity.

Annual contract trend over the analysis window

Annual obligations peaked in 2023 at $796.61 million across 132 awards, after rising from $347.07 million in 2021 to $429.70 million in 2022. Funding then declined to $384.94 million in 2024 and $83.53 million in 2025 year-to-date, suggesting a sharp contraction relative to the prior peak.

How to interpret this page

This summary uses FPDS obligation data for the last 10 years and aggregates by vendor identifiers provided in the input. Totals, counts, and averages reflect the supplied overview, agency, NAICS, and annual trend figures without additional inference or external sources.

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 = '3DXE7'
        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
2044 UNITED STATES MINT 3,351,144,062.28 3.35 billion 806

Insight

Over the last 10 years, PRECIOUS A-MARK METALS INC’s obligations are fully concentrated with the UNITED STATES MINT, which accounts for the entire $3.35 billion obligated and all 806 awards. This indicates a single-agency funding profile with no observable distribution across other agencies in the provided data. The average award value of about $4.16 million suggests a pattern of repeated, significant transactions within this sole agency relationship.

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 = '3DXE7'
        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
331491 NONFERROUS METAL (EXCEPT COPPER AND ALUMINUM) ROLLING, DRAWING, AND EXTRUDING 2,805,297,406.73 2.81 billion 769
331410 NONFERROUS METAL (EXCEPT ALUMINUM) SMELTING AND REFINING 545,846,655.55 545.85 million 37

Insight

Over the last 10 years, PRECIOUS A-MARK METALS INC’s obligations are highly concentrated in NAICS 331491, which accounts for $2.81 billion across 769 awards, or most of the vendor’s $3.35 billion total. NAICS 331410 is a smaller but material secondary category at $545.85 million across 37 awards. This distribution indicates the vendor’s FPDS activity is concentrated in nonferrous metal manufacturing, with award volume and obligated dollars both heavily weighted toward NAICS 331491.

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 = '3DXE7'
        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 83,531,920.26 83.53 million 11
2024 384,940,025.56 384.94 million 61
2023 796,610,856.37 796.61 million 132
2022 429,703,831.09 429.70 million 71
2021 347,068,648.83 347.07 million 68
2020 575,976,139.22 575.98 million 145
2019 207,030,238.14 207.03 million 101
2018 327,333,313.00 327.33 million 131
2017 198,949,089.81 198.95 million 86

Insight

Over the last 10 years, PRECIOUS A-MARK METALS INC (CAGE 3DXE7) received $3.35 billion across 806 awards, with an average award value of $4.16 million. Obligations are concentrated in the most recent years, peaking in 2023 at $796.61 million across 132 awards, then declining to $384.94 million in 2024 and $83.53 million in 2025 to date. Earlier years were materially lower and more variable, ranging from $198.95 million in 2017 to $575.98 million in 2020, indicating a pronounced upward shift in activity followed by a recent contraction.

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.