Award Number

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

Federal procurement analysis for award W58P0522C0016 under Agency ID 9700, showing obligation and action history over the last 10 years.

This page summarizes federal procurement activity for award number W58P0522C0016 associated with Agency ID 9700. Over the last 10 years, the award shows 7 actions and total obligated amounts of $4.04 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar values are based on the provided analysis window and reflect a total obligated exact amount of 4038717531.97.

Agency ID
9700
PIID
W58P0522C0016
Type
Award
Total Obligated
4.04 billion
4,038,717,531.97
Actions
7
Average Action Value
576,959,647.42

Overview

The award record for W58P0522C0016 shows 7 recorded actions within the last 10 years. Total obligated spending is $4,038,717,531.97, with an average action value of $576,959,647.42.

How to use this page

Use this page to review the award-level obligation profile for Agency ID 9700 and compare action volume with total funded value. The figures support basic procurement tracking, trend review, and cross-award comparison within the same analysis 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 = 'W58P0522C0016'
    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 4,038,717,531.97 4.04 billion 7

Insight

Obligations for PIID W58P0522C0016 are fully concentrated in a single agency: the Department of the Army. Over the 10-year window, the Army accounts for $4.04 billion across 7 awards, indicating a highly concentrated award pattern with no other agency-level obligations reflected 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 = 'W58P0522C0016'
        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
PFIZER INC. 86491 4,038,717,531.97 4.04 billion 7

Insight

PFIZER INC. is the sole top vendor associated with this award record over the 10-year window, accounting for all reported obligation in the provided rows. The vendor’s total obligated amount is $4.04 billion across 7 awards, indicating a highly concentrated obligation pattern rather than a broadly distributed vendor base. This level of concentration suggests the award activity is dominated by a single contractor relationship for 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 = 'W58P0522C0016'
    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
325412 PHARMACEUTICAL PREPARATION MANUFACTURING 4,038,717,531.97 4.04 billion 7

Insight

Obligations for award W58P0522C0016 are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, over the 10-year window. This NAICS accounts for the entire reported obligated amount of $4.04 billion across 7 awards, indicating a narrow and highly concentrated procurement profile for this instrument.

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 = 'W58P0522C0016'
    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 4,038,717,531.97 4.04 billion 7

Insight

Obligations under PIID W58P0522C0016 are concentrated entirely in PSC 6505, Drugs and Biologicals, with $4.04 billion obligated across 7 awards over the 10-year window. This indicates a highly focused procurement profile with no observed PSC diversification in the provided results. The small award count relative to the obligated amount suggests large-dollar transactions within this product category.

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 = 'W58P0522C0016'
    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
2022 4,040,249,850.00 4.04 billion 6
2023 -1,532,318.03 -1.53 million 1

Insight

Obligations are highly concentrated in 2022, when the award accounted for $4.04 billion across 6 actions. In 2023, obligated value declined sharply to -$1.53 million across 1 action, indicating a near-complete drop-off and a net downward trend over the period provided. The pattern suggests the award’s funding activity was concentrated in a single year rather than distributed evenly across the two years shown.

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.