Award Number

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

FPDS award record for award number W15QKN21C0014 under agency ID 9700, covering the last 10 years of obligations and actions.

This page summarizes award number W15QKN21C0014 for agency ID 9700 over the last 10 years. The record shows 8 award actions and total obligations of 5.57 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window, with total obligated exact value of 5565000000 and an average action value of 695625000.

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

Over the last 10 years, award number W15QKN21C0014 is associated with 8 award actions and 5,565,000,000 in total obligated dollars. The average action value is 695,625,000, based on the provided totals. This page presents the award-level record for agency ID 9700 without adding details beyond the supplied FPDS inputs.

How to use this page

Use this page to review the award's obligation history, action count, and average action value within the stated analysis window. It is intended for procurement analysis and search, not for inferring contract scope or performance details that are not included in the record.

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 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
2100 DEPT OF THE ARMY 5,565,000,000.00 5.57 billion 8

Insight

Over the 10-year window for PIID W15QKN21C0014, obligated spending is fully concentrated in a single agency recipient: the Department of the Army. The Army accounts for the entire $5.57 billion obligated across 8 awards, indicating a highly concentrated award distribution with no other agencies represented in this section.

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 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
REGENERON PHARMACEUTICALS, INC. 544P9 5,565,000,000.00 5.57 billion 8

Insight

Obligations under PIID W15QKN21C0014 are fully concentrated with REGENERON PHARMACEUTICALS, INC. (CAGE 544P9), which accounts for 5.57 billion across 8 awards in the 10-year window. This indicates a highly concentrated vendor distribution with no evidence of award dispersion among other vendors in the provided data.

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 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 5,565,000,000.00 5.57 billion 8

Insight

This award is fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing, with $5.57 billion obligated across 8 awards over the 10-year window. The distribution 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 recurring large-dollar activity within this single industry category.

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 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
6505 DRUGS AND BIOLOGICALS 5,565,000,000.00 5.57 billion 8

Insight

Award obligations for PIID W15QKN21C0014 are fully concentrated in PSC 6505, Drugs and Biologicals, with $5.57 billion across 8 awards over the 10-year window. This indicates a highly focused procurement pattern with no observed diversification across PSCs in the provided data. The average obligation per award is substantial, suggesting large-value pharmaceutical or biological acquisitions under this award record.

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 10 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 FY 2021, when 6 awards accounted for $5.57 billion in obligations. In FY 2022, activity continued with 2 awards, but no obligations were recorded. This pattern indicates a sharp decline in obligated value after the initial funding year, with subsequent award activity not reflected in obligations.

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.