Federal Contractor

MODERNATX, INC. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for MODERNATX, INC. (CAGE 6RP85, UEI WJYNZ8AK2D47) covering the last 5 years of FPDS-observed awards.

MODERNATX, INC. recorded 55 award actions with total obligated dollars of 5,768,418,297.74 and an average action value of 104,880,332.68 over the last 5 years. Obligations were concentrated in the Department of the Army and the Office of Assistant Secretary for Preparedness and Response, with pharmaceutical and biological product manufacturing as the leading NAICS categories.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual and category totals can include negative obligations from deobligations or contract adjustments, and 2025 data may still be partial.

CAGE Code
6RP85
UEI
WJYNZ8AK2D47
Total Obligated
5.77 billion
5,768,418,297.74
Award Actions
55
Average Action Value
104,880,332.68

About MODERNATX, INC. federal contract activity

MODERNATX, INC. (CAGE 6RP85, UEI WJYNZ8AK2D47) received 55 awards totaling 5.77 billion over the last 5 years, for an average award value of 104.88 million. Obligations are heavily concentrated in a small number of actions, with the largest annual activity occurring in 2021 and sharply lower values in subsequent years.

Agency mix and customer concentration

The DEPT OF THE ARMY dominates the vendor’s award history, accounting for 5.01 billion across 29 awards, or the large majority of total obligations. The OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE is the secondary source of business at 755.10 million across 25 awards, while the VETERANS AFFAIRS, DEPARTMENT OF contributed only 12.30 thousand in a single award.

Industry profile based on NAICS activity

Awarded obligations are concentrated in PHARMACEUTICAL PREPARATION MANUFACTURING (NAICS 325412), which represents 5.01 billion across 30 awards. BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING (NAICS 325414) adds 799.45 million across 19 awards, while RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY (NAICS 541711) shows a negative net obligated amount of 44.35 million across 6 awards, indicating downward adjustment activity within that code.

Annual contract trend over the analysis window

Annual obligations peaked in 2021 at 5.39 billion across 24 awards, then declined to 331.27 million in 2022 and 48.04 million in 2023. The series turns near-zero in 2024 with a small negative net amount and remains at 0 in 2025, though award counts continue to register activity in both years.

How to interpret this page

This page summarizes FPDS obligations associated with MODERNATX, INC. using the provided CAGE code and UEI over the last 5 years. Amounts reflect total obligated dollars and award counts as reported in the supplied dataset; negative values are preserved as reported and may reflect deobligations or 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 = '6RP85'
        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 5,013,308,278.12 5.01 billion 29
7505 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 755,097,717.12 755.10 million 25
3600 VETERANS AFFAIRS, DEPARTMENT OF 12,302.50 12.30 thousand 1

Insight

Over the last 5 years, MODERNATX, INC. received 5.77 billion across 55 awards, averaging 104.88 million per award. Obligations are highly concentrated in the DEPT OF THE ARMY, which accounts for 5.01 billion across 29 awards, or the large majority of total dollars. The OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE is the second-largest buyer at 755.10 million across 25 awards, indicating a secondary but materially smaller funding stream. DEPARTMENT OF VETERANS AFFAIRS activity is minimal at 12.30 thousand on 1 award.

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 = '6RP85'
        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 5,013,320,580.62 5.01 billion 30
325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING 799,450,501.45 799.45 million 19
541711 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY -44,352,784.33 -44.35 million 6

Insight

Over the last 5 years, MODERNATX, INC. has obligated 5.77 billion across 55 awards, with activity highly concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, which accounts for 5.01 billion and 30 awards. NAICS 325414, Biological Product (Except Diagnostic) Manufacturing, is the secondary area of activity at 799.45 million across 19 awards, indicating a narrower but still substantial concentration in biological manufacturing. NAICS 541711, Research and Development in Biotechnology, shows a net negative obligated amount of 44.35 million across 6 awards, suggesting adjustments or deobligations within a limited set of R&D actions.

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 = '6RP85'
        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 0.00 0.00 2
2024 -6,336.92 -6.34 thousand 3
2023 48,044,094.89 48.04 million 12
2022 331,273,307.11 331.27 million 14
2021 5,389,107,232.66 5.39 billion 24

Insight

MODERNATX, INC. shows a highly concentrated funding profile over the last 5 years, with $5.39 billion obligated in 2021 accounting for the vast majority of the $5.77 billion total. Obligations declined sharply in 2022 to $331.27 million and again in 2023 to $48.04 million, followed by negligible activity in 2024 (-$6.34 thousand) and no obligated amount recorded in 2025. Award activity also contracted over the period, from 24 awards in 2021 to 14 in 2022, 12 in 2023, 3 in 2024, and 2 in 2025, indicating a marked reduction in both dollar volume and transaction frequency.

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.