Award Number

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

Award number W15QKN21C0012 for Agency ID 9700 shows obligated activity over the last 5 years.

This award record covers PIID W15QKN21C0012 under Agency ID 9700 during the last 5 years. It includes 28 award actions and $9,098,851,565.68 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated figures are shown as both readable and exact values, and averages are calculated from the provided action count.

Agency ID
9700
PIID
W15QKN21C0012
Type
Award
Total Obligated
9.10 billion
9,098,851,565.68
Actions
28
Average Action Value
324,958,984.49

Overview

Over the last 5 years, award W15QKN21C0012 recorded 28 actions with total obligated value of $9,098,851,565.68. The average action value is $324,958,984.49, which provides a simple measure of the scale of activity in this award record. This page is organized around the award number and the agency identifier provided in the source data.

How to use this page

Use this page to review the award-level obligation history tied to PIID W15QKN21C0012. The summary supports quick comparison across actions, total obligations, and average action value within the 5-year analysis window. It is intended for procurement review, reporting, and record lookup.

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 = 'W15QKN21C0012'
    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 9,098,851,565.68 9.10 billion 28

Insight

Over the last 5 years, obligations for this award are concentrated entirely within the Department of the Army, which accounts for the full $9.10 billion observed. The award activity is also highly discrete, with 28 obligations recorded and no other agencies represented in the provided rows. This indicates a single-agency funding profile with no visible cross-agency distribution in the available data.

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 = 'W15QKN21C0012'
        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
PFIZER INC. 86491 9,098,851,565.68 9.10 billion 28

Insight

PFIZER INC. is the sole vendor listed for this award in the 5-year window, accounting for 100% of the observed obligated amount. Across 28 awards, total obligations to PFIZER INC. sum to $9.10 billion, indicating a highly concentrated vendor profile. This pattern suggests the award activity under PIID W15QKN21C0012 is entirely dependent on a single contractor within the period reviewed.

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 = 'W15QKN21C0012'
    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 9,098,851,565.68 9.10 billion 28

Insight

Over the 5-year window, this award is fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing. The cited row accounts for $9.10 billion across 28 awards, indicating a highly concentrated obligation profile within a single industry code. This concentration suggests the award activity is not diversified across multiple NAICS categories in the provided data.

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 = 'W15QKN21C0012'
    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 9,098,851,565.68 9.10 billion 28

Insight

Over the 5-year window, PSC 6505 (Drugs and Biologicals) accounts for 9.10 billion in obligated dollars across 28 awards under PIID W15QKN21C0012. This indicates a highly concentrated spend pattern in a single PSC, with relatively few awards driving a very large obligation total. The distribution suggests this award record is dominated by pharmaceutical and biological procurement activity 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 = 'W15QKN21C0012'
    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 9,114,679,000.00 9.11 billion 19
2022 18,007,444.50 18.01 million 6
2023 -33,834,848.82 -33.83 million 2
2025 -30.00 -30.00 1

Insight

Obligations for PIID W15QKN21C0012 are highly concentrated in 2021, when 19 actions accounted for 9.11 billion, far exceeding later years. Activity drops sharply in 2022 to 18.01 million across 6 awards, then turns negative in 2023 at -33.83 million across 2 awards, indicating downward adjustments or deobligations rather than new funding growth. A single additional negative obligation appears in 2025 (-30), suggesting minimal subsequent activity over the 5-year 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.