Award Number

Award Number 7505 / 75A50120C00034 Federal Contract Action Summary (Last 10 Years)

Procurement analysis page for award number 75A50120C00034 under agency 7505, covering obligations and action activity over the last 10 years.

This page summarizes federal award activity for award number 75A50120C00034 associated with agency ID 7505. Over the last 10 years, the award shows 24 actions with total obligated amounts of 1.75 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Obligation values are shown as both readable and exact totals, based on the provided 10-year analysis window.

Agency ID
7505
PIID
75A50120C00034
Type
Award
Total Obligated
1.75 billion
1,754,345,480.45
Actions
24
Average Action Value
73,097,728.35

Overview

Award number 75A50120C00034 is the focal record for this procurement page. In the last 10 years, the award has 24 recorded actions and total obligations of 1,754,345,480.45 dollars, with an average action value of 73,097,728.35 dollars.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for 75A50120C00034. The figures support a quick assessment of activity intensity and funding scale within agency ID 7505 over the selected period.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
7505 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 1,754,345,480.45 1.75 billion 19
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 0.00 0.00 5

Insight

Over the 10-year window, obligations for PIID 75A50120C00034 are highly concentrated in the OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE, which accounts for $1.75 billion across 19 awards. The ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE appears only as a secondary award group with 5 awards and no obligated dollars reported. This pattern indicates that the obligated value is concentrated with one agency entity, while the additional awards did not contribute measurable funding under this query.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
MODERNATX, INC. 6RP85 1,754,345,480.45 1.75 billion 24

Insight

MODERNATX, INC. is the only vendor listed for this award, accounting for the full observed obligation total of $1.75 billion across 24 awards. This indicates complete vendor concentration within the top-vendor view for PIID 75A50120C00034 over the 10-year window. The distribution suggests award activity is entirely concentrated with a single contractor rather than spread across multiple vendors.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING 1,754,345,480.45 1.75 billion 24

Insight

Obligations for PIID 75A50120C00034 are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing, over the 10-year window. This NAICS accounts for $1.75 billion across 24 awards, indicating a highly focused spending pattern with no diversification across other industry codes in the provided data. The concentration suggests this award history is tied to a specific biological products acquisition profile.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
AN11 R&D- MEDICAL: BIOMEDICAL (BASIC RESEARCH) 954,894,979.00 954.89 million 5
AN11 HEALTH R&D SERVICES; HEALTH CARE SERVICES; BASIC RESEARCH 799,450,501.45 799.45 million 19

Insight

Obligations for PIID 75A50120C00034 are concentrated in PSC AN11 across the 10-year window, with two AN11 descriptions accounting for substantial funding. “R&D- Medical: Biomedical (Basic Research)” received $954.89 million across 5 awards, while “Health R&D Services; Health Care Services; Basic Research” received $799.45 million across 19 awards. This indicates a sustained emphasis on medical and health-related basic research, with one PSC description representing larger-dollar, lower-count awards and the other representing a broader set of awards at a slightly lower total value.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
    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 ASC
Year Total Obligated Readable Actions
2020 954,894,979.00 954.89 million 5
2021 443,210,913.06 443.21 million 6
2022 308,495,451.00 308.50 million 4
2023 47,744,137.39 47.74 million 5
2024 0.00 0.00 2
2025 0.00 0.00 2

Insight

Obligations for PIID 75A50120C00034 were concentrated in FY2020-FY2022, peaking at $954.89 million in 2020 and declining to $443.21 million in 2021 and $308.50 million in 2022. FY2023 obligations dropped sharply to $47.74 million, indicating a substantial reduction in annual funding activity. FY2024 and FY2025 each show two awards with zero obligated dollars, suggesting award activity continued but without recorded obligations in the queried window.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.