Award Number

Award Number 9700 / W15QKN21C0014 Federal Contract Action Summary (Last 5 Years)

Award number W15QKN21C0014 for agency 9700 shows 8 actions over the last 5 years with $5.57 billion obligated.

This page summarizes federal procurement activity for award number W15QKN21C0014 under agency ID 9700 across the last 5 years. The award shows total obligated spending of $5.57 billion across 8 recorded actions.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and obligation values, with average action value calculated at $695.63 million.

Agency ID
9700
PIID
W15QKN21C0014
Type
Award
Total Obligated
5.57 billion
5,565,000,000.00
Actions
8
Average Action Value
695,625,000.00

Overview

Award number W15QKN21C0014 is associated with agency ID 9700 and shows 8 award actions in the last 5 years. The reported total obligated amount is $5,565,000,000, with an average action value of $695,625,000.

How to use this page

Use this page to review the scale and cadence of obligation activity tied to award W15QKN21C0014. It provides a compact view of total obligations, action count, and average action value for the selected window.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W15QKN21C0014'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
2100 DEPT OF THE ARMY 5,565,000,000.00 5.57 billion 8

Insight

Over the past 5 years, obligations for PIID W15QKN21C0014 are fully concentrated in a single agency: the Department of the Army. The Army accounts for $5.57 billion across 8 awards, indicating a highly concentrated award profile with no visible distribution across other agencies in the provided data. This pattern suggests the award’s activity is agency-specific rather than broadly distributed.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W15QKN21C0014'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
REGENERON PHARMACEUTICALS, INC. 544P9 5,565,000,000.00 5.57 billion 8

Insight

REGENERON PHARMACEUTICALS, INC. accounts for the entirety of reported obligations in this top-vendor view for PIID W15QKN21C0014 over the past 5 years, with $5.57 billion across 8 awards. This indicates complete concentration of obligated dollars with a single vendor and a relatively small award count, suggesting a highly focused funding pattern.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W15QKN21C0014'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING 5,565,000,000.00 5.57 billion 8

Insight

Obligations for PIID W15QKN21C0014 under Agency ID 9700 are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing, with $5.57 billion obligated across 8 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The average obligation per award is substantial, suggesting this contract is tied to large-scale biological product manufacturing requirements.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W15QKN21C0014'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
6505 DRUGS AND BIOLOGICALS 5,565,000,000.00 5.57 billion 8

Insight

Obligations for award W15QKN21C0014 are fully concentrated in PSC 6505, Drugs and Biologicals, with $5.57 billion obligated across 8 awards/actions in the 5-year window. This indicates a highly focused procurement profile with no visible diversification across PSCs in the provided data. The distribution suggests the award is dominated by medical supply obligations rather than a broad mix of product categories.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W15QKN21C0014'
    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 ASC
Year Total Obligated Readable Actions
2021 5,565,000,000.00 5.57 billion 6
2022 0.00 0.00 2

Insight

Obligations for PIID W15QKN21C0014 are highly concentrated in 2021, when $5.57 billion was obligated across 6 awards. In 2022, the record includes 2 awards but no obligated dollars, indicating a sharp decline in funded activity after the 2021 peak. Over the 5-year window, the activity is therefore skewed to a single year rather than distributed evenly across the period.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.