This page presents award-level procurement data for PIID W58P0521C0002 within agency ID 9700. Over the last five years, the award shows 31 actions and total obligated amounts of 4.15 billion.
Award Number
Award Number 9700 / W58P0521C0002 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award number W58P0521C0002 under agency ID 9700, showing obligations and action activity over the last five years.
Dollar figures are reported as provided, with total obligated exact value of 4150835100 and average action value of 133897906.45.
Overview
The award record for PIID W58P0521C0002 covers a five-year analysis window and includes 31 reported actions. Total obligated value is 4.15 billion, with an average action value of 133,897,906.45. These figures provide a compact view of award activity tied to agency ID 9700.
How to use this page
Use this page to review the award's obligation level and action count over the selected period. The data supports basic procurement analysis, such as comparing this award to other FPDS records by value, action volume, or agency assignment.
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 = 'W58P0521C0002'
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 | 4,150,635,600.00 | 4.15 billion | 24 |
| 7200 | AGENCY FOR INTERNATIONAL DEVELOPMENT | 199,500.00 | 199.50 thousand | 7 |
Insight
Obligations for PIID W58P0521C0002 are highly concentrated within the DEPT OF THE ARMY, which accounts for $4.15 billion across 24 awards over the 5-year window. The AGENCY FOR INTERNATIONAL DEVELOPMENT represents a very small share by comparison, with $199.5 thousand across 7 awards. This distribution indicates the award is overwhelmingly associated with one agency, with only limited obligation activity elsewhere.
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 = 'W58P0521C0002'
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 | 4,150,835,100.00 | 4.15 billion | 31 |
Insight
PFIZER INC. is the only vendor listed for this award over the 5-year window, indicating complete concentration of obligated dollars with a single contractor. The vendor has 31 awards totaling 4.15 billion, which suggests sustained and recurring obligation activity rather than a one-time action. This pattern reflects a highly concentrated vendor distribution for PIID W58P0521C0002 within Agency ID 9700.
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 = 'W58P0521C0002'
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 | 4,150,835,100.00 | 4.15 billion | 31 |
Insight
Over the 5-year window for award W58P0521C0002, obligations are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing. This category accounts for $4.15 billion across 31 awards, indicating a strong concentration of activity in a single industry code. No other NAICS codes are reported in this section, so the observed distribution is entirely undiversified within 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 = 'W58P0521C0002'
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 | 4,150,835,100.00 | 4.15 billion | 31 |
Insight
Within the 5-year window, award PIID W58P0521C0002 is fully concentrated in PSC 6505, Drugs and Biologicals, with $4.15 billion obligated across 31 awards. This indicates a highly focused procurement profile for this action, with no evidence in the provided rows of material PSC diversification. The concentration in a single PSC suggests the award’s obligation history is dominated by pharmaceutical and biological supply activity.
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 = 'W58P0521C0002'
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 | 4,900,000,002.00 | 4.90 billion | 6 |
| 2022 | -740,000,001.00 | -740.00 million | 14 |
| 2023 | 10,302,793.00 | 10.30 million | 9 |
| 2024 | -19,467,694.00 | -19.47 million | 2 |
Insight
Obligations under PIID W58P0521C0002 were heavily concentrated in 2021, when 6 awards accounted for $4.90 billion, far exceeding activity in subsequent years. From 2022 through 2024, obligated amounts were materially lower and volatile, including negative net obligations in 2022 and 2024, while award counts peaked at 14 in 2022 before declining to 2 in 2024. Overall, the 5-year window indicates a sharp one-year funding concentration followed by reduced and inconsistent obligation levels.
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.