Federal Contractor

MODERNA US, INC. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for MODERNA US, INC. (CAGE 8PTM0, UEI G5BFKCJLDML6) covering obligations, award activity, agencies, and NAICS concentration over the last 5 years.

MODERNA US, INC. recorded $1.79 billion in obligated federal awards across 12 actions in the last 5 years, with all activity concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. The Department of the Army accounted for the full obligated total, while the Office of Assistant Secretary for Preparedness and Response appeared in 8 award actions with no obligated amount reported.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual activity is concentrated in 2022, which carried the full $1.79 billion obligated total, while 2023 shows 5 award actions with zero obligated dollars.

CAGE Code
8PTM0
UEI
G5BFKCJLDML6
Total Obligated
1.79 billion
1,788,399,999.00
Award Actions
12
Average Action Value
149,033,333.25

About MODERNA US, INC. federal contract activity

MODERNA US, INC. (CAGE 8PTM0; UEI G5BFKCJLDML6) recorded 12 FPDS awards over the last 5 years with total obligated dollars of $1.79 billion. The average award value was $149.0 million, indicating a small number of high-value obligations rather than a broad base of small transactions.

Agency mix and customer concentration

Obligations were concentrated in the DEPT OF THE ARMY, which accounted for the full $1.79 billion across 4 awards. The OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE also appears in the award record with 8 awards but no obligated dollars in the provided data, suggesting activity captured in counts but not in funding obligation totals.

Industry profile based on NAICS activity

All recorded obligated dollars fall under NAICS 325412, Pharmaceutical Preparation Manufacturing, which aligns the vendor’s federal contract activity with pharmaceutical production. The distribution is highly concentrated, with all 12 awards and the entire $1.79 billion tied to this single NAICS code.

Annual contract trend over the analysis window

Annual activity is concentrated in 2022, when MODERNA US, INC. received 7 awards totaling $1.79 billion. In 2023, the record shows 5 awards but no obligated dollars, indicating a shift from funded obligations to zero-obligation awards or modifications in the provided dataset.

How to interpret this page

This summary is based on FPDS award records for the last 5 years using the vendor identifiers provided: CAGE 8PTM0 and UEI G5BFKCJLDML6. Totals, counts, agency mix, NAICS mix, and annual trends reflect the supplied aggregation values and are reported as provided without extrapolation.

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 = '8PTM0'
        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
2100 DEPT OF THE ARMY 1,788,399,999.00 1.79 billion 4
7505 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 0.00 0.00 8

Insight

Over the last 5 years, MODERNA US, INC. received 1.79 billion in obligated funding across 12 awards, with activity highly concentrated in the DEPT OF THE ARMY. The Army accounted for the full 1.79 billion and 4 awards, indicating that all obligated dollars in this window were concentrated in a single agency relationship. The remaining 8 awards were issued by the OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE but carried no obligated dollars, suggesting a split between obligated and non-obligated award activity.

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 = '8PTM0'
        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
325412 PHARMACEUTICAL PREPARATION MANUFACTURING 1,788,399,999.00 1.79 billion 12

Insight

Over the last 5 years, MODERNA US, INC. shows complete NAICS concentration in 325412, Pharmaceutical Preparation Manufacturing. All $1.79 billion in obligated value and all 12 awards fall within this single NAICS, indicating a fully concentrated procurement profile. The average award value is approximately $149.0 million, suggesting relatively high-value awards within a narrow industrial scope.

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 = '8PTM0'
        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
2023 0.00 0.00 5
2022 1,788,399,999.00 1.79 billion 7

Insight

Over the last 5 years, MODERNA US, INC. (CAGE 8PTM0) received 1.79 billion in obligated funding across 12 awards, with an average award value of 149.0 million. Obligations are highly concentrated in 2022, which accounts for the full 1.79 billion across 7 awards, while 2023 recorded 5 awards with no obligated value. This pattern indicates a sharp one-year funding concentration rather than a sustained annual obligation trend.

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.