PFIZER INC. is shown in FPDS data with 718 award actions and $1,447,929.79 in total obligated value for the last full year. Most activity was with the Defense Logistics Agency, while smaller portions appear under CDC and other agencies, with pharmaceutical preparation manufacturing as the primary NAICS category.
Federal Contractor
PFIZER INC. Federal Contract Obligations (Last Year)
PFIZER INC. (CAGE 86491, UEI MHBQULRMEEJ5) recorded 718 federal contract actions and $1.45 million in obligations during the last full year.
Negative obligations in some agency and NAICS rows indicate deobligations or adjustments within the reporting period.
About PFIZER INC. federal contract activity
PFIZER INC. recorded $1.45 million in obligated federal awards across 718 actions in the last full year, for an average award value of $2,016.61. The profile is highly fragmented by action count, with funding concentrated in a very large number of small transactions rather than a few large awards.
Agency mix and customer concentration
The Defense Logistics Agency accounted for most of the obligational value at $1.10 million across 713 awards, making it the clear primary buying organization in this window. The Centers for Disease Control and Prevention added $410.20 thousand across 2 awards, while smaller negative adjustments from the Department of the Army and ASPR reduced net totals.
Industry profile based on NAICS activity
Contract activity is dominated by NAICS 325412, Pharmaceutical Preparation Manufacturing, which represents $2.27 million across 714 awards and aligns with Pfizer’s core commercial profile. Secondary activity appears under Refrigerated Warehousing and Storage at $410.20 thousand, with isolated negative-value entries in Biological Product Manufacturing and Biotechnology R&D indicating limited adjustments or cancellations rather than sustained volume.
Annual contract trend over the analysis window
The annual trend is flat in the sense that only one year appears in the analysis window: 2025, with $1.45 million obligated across 718 awards. Because the window contains a single year, this dataset supports a point-in-time view of recent procurement activity rather than a multi-year growth or decline assessment.
How to interpret this page
This page summarizes FPDS obligations tied to CAGE 86491 and UEI MHBQULRMEEJ5 over the last full year. Totals reflect obligated dollars as reported in FPDS and may include negative entries from deobligations or adjustments; award counts represent the number of recorded actions in the analysis window.
Top Agencies
SELECT
agency_id,
agency_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '86491'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 97AS | DEFENSE LOGISTICS AGENCY | 1,104,162.94 | 1.10 million | 713 |
| 7523 | CENTERS FOR DISEASE CONTROL AND PREVENTION | 410,203.49 | 410.20 thousand | 2 |
| 2100 | DEPT OF THE ARMY | -30.00 | -30.00 | 1 |
| 7505 | ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE | -66,406.64 | -66.41 thousand | 2 |
Insight
PFIZER INC. received $1.45 million across 718 awards in the last full year, with an average award value of $2.0 thousand, indicating a high-volume, low-dollar award profile. Obligations were heavily concentrated at the Defense Logistics Agency, which accounted for $1.10 million and 713 awards, or nearly all activity in the period. The Centers for Disease Control and Prevention was a distant second with $410.2 thousand across 2 awards. Minor negative obligations were recorded at the Department of the Army (-$30) and the Administration for Strategic Preparedness and Response (-$66.4 thousand), reducing net obligated value.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '86491'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 325412 | PHARMACEUTICAL PREPARATION MANUFACTURING | 2,272,139.74 | 2.27 million | 714 |
| 493120 | REFRIGERATED WAREHOUSING AND STORAGE | 410,203.49 | 410.20 thousand | 2 |
| 325414 | BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING | -30.00 | -30.00 | 1 |
| 541711 | RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY | -1,234,383.44 | -1.23 million | 1 |
Insight
PFIZER INC. shows a highly concentrated Top NAICS profile in the last full year, with PHARMACEUTICAL PREPARATION MANUFACTURING (NAICS 325412) accounting for 714 of 718 awards and $2.27 million in obligations. REFRIGERATED WAREHOUSING AND STORAGE (NAICS 493120) is a distant second at $410.2 thousand across 2 awards, while the remaining NAICS codes each have one award and minimal or negative obligations. Overall, the vendor’s obligation activity is dominated by pharmaceutical manufacturing, with limited diversification into storage and isolated adjustments in other categories.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '86491'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 1,447,929.79 | 1.45 million | 718 |
Insight
During the last full year, PFIZER INC. (CAGE 86491) recorded $1.45 million in obligated value across 718 awards, resulting in an average award value of $2,016.61. The award pattern indicates a highly distributed obligation profile, with relatively low dollars per action and no evidence in the provided period of large individual awards dominating annual volume. This concentration suggests procurement activity was driven by numerous small obligations rather than a small number of high-value transactions.
Use FPDS Query for deeper contractor analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.
Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.