Award Number

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

Federal procurement summary for award number W58P0522C0009 under agency ID 9700, covering the last 5 years of reported award activity.

This page summarizes obligation activity for award W58P0522C0009 over the last 5 years. The record shows 5 award actions with total obligated funding of 1.77 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts are based on the provided readable total obligated value of 1,774,999,987.2 and the reported 5 actions for PIID W58P0522C0009.

Agency ID
9700
PIID
W58P0522C0009
Type
Award
Total Obligated
1.77 billion
1,774,999,987.20
Actions
5
Average Action Value
354,999,997.44

Overview

The award record for PIID W58P0522C0009 shows 5 actions in the last 5 years. Total obligated funding is 1,774,999,987.2, with an average action value of 354,999,997.44. These figures indicate a high-value award with limited action count.

How to use this page

Use this page to review obligation volume and action frequency for award W58P0522C0009. The values can support basic procurement analysis, comparison with other awards, and tracking of funding activity over the selected period.

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 = 'W58P0522C0009'
    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 1,774,999,987.20 1.77 billion 5

Insight

Obligations under PIID W58P0522C0009 in the 5-year window are fully concentrated in a single agency: the Department of the Army. That agency accounts for $1.77 billion across 5 awards, indicating a highly concentrated award profile with no observable distribution across other agencies in the provided 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 = 'W58P0522C0009'
        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
IHEALTH LABS INC. 75EV5 1,774,999,987.20 1.77 billion 5

Insight

Over the 5-year window, obligations for this award are fully concentrated with a single vendor, IHEALTH LABS INC. (CAGE 75EV5), which accounts for $1.77 billion across 5 awards. This indicates a highly concentrated vendor distribution with no diversification among top 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 = 'W58P0522C0009'
    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
325413 IN-VITRO DIAGNOSTIC SUBSTANCE MANUFACTURING 1,774,999,987.20 1.77 billion 5

Insight

Obligations under PIID W58P0522C0009 are fully concentrated in NAICS 325413, In-Vitro Diagnostic Substance Manufacturing, which accounts for the entire 5-year obligated total of $1.77 billion across 5 awards. This indicates a highly concentrated spend profile with no diversification across other NAICS codes in the provided data. The pattern suggests the award is narrowly scoped to this manufacturing category over the observed window.

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 = 'W58P0522C0009'
    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
6515 MEDICAL AND SURGICAL INSTRUMENTS, EQUIPMENT, AND SUPPLIES 1,774,999,987.20 1.77 billion 5

Insight

Over the past 5 years, award PIID W58P0522C0009 for agency 9700 is fully concentrated in PSC 6515, Medical and Surgical Instruments, Equipment, and Supplies. This PSC accounts for $1.77 billion across 5 awards, indicating a highly concentrated spend profile with limited product code diversification. The small award count relative to obligation volume suggests a few large obligations rather than broad distribution across multiple PSCs.

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 = 'W58P0522C0009'
    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
2022 1,774,999,987.20 1.77 billion 5

Insight

In 2022, PIID W58P0522C0009 accounted for $1.77 billion in obligated funding across 5 awards, indicating a highly concentrated obligation pattern within the five-year window. The available data show activity only in 2022, so no multi-year trend can be assessed from the provided rows.

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.