Federal Contractor

IHEALTH LABS INC. Federal Contract Obligations (Last 10 Years)

Federal procurement summary for IHEALTH LABS INC. (CAGE 75EV5, UEI RSKJC51FNLR3) covering obligations, awards, agencies, and NAICS activity over the last 10 years.

IHEALTH LABS INC. recorded 12 federal award actions totaling $2.13 billion in obligated value over the last 10 years. Most activity came from the Department of the Army, with additional obligations from the Defense Logistics Agency and the Administration for Strategic Preparedness and Response.

Generated at 03/21/2026

Analysis period: Last 10 years

Values reflect FPDS award action data for the selected analysis window and may include obligations across multiple actions in the same award family.

CAGE Code
75EV5
UEI
RSKJC51FNLR3
Total Obligated
2.13 billion
2,132,749,987.20
Award Actions
12
Average Action Value
177,729,165.60

About IHEALTH LABS INC. federal contract activity

IHEALTH LABS INC. (CAGE 75EV5, UEI RSKJC51FNLR3) recorded $2.13 billion in obligated federal awards across 12 awards over the last 10 years, for an average award value of about $177.7 million. The vendor's federal activity is highly concentrated, with most obligations tied to a small number of awards rather than a broad transaction base.

Agency mix and customer concentration

The Department of the Army accounts for the largest share of obligations at $1.77 billion across 5 awards, making it the dominant customer in this profile. The Defense Logistics Agency contributed $190.8 million across 3 awards, and the Administration for Strategic Preparedness and Response added $166.95 million across 4 awards, indicating a defense- and preparedness-oriented agency mix.

Industry profile based on NAICS activity

All reported obligations are concentrated in NAICS 325413, In-Vitro Diagnostic Substance Manufacturing, which accounts for the full $2.13 billion and all 12 awards. This indicates a single-line business profile centered on diagnostic substance manufacturing rather than a diversified contracting footprint.

Annual contract trend over the analysis window

Annual obligations were concentrated in 2022, when the vendor received $1.97 billion across 6 awards. Activity declined sharply in 2023 to $166.95 million across 4 awards, and 2024 shows zero obligated dollars on 2 awards, suggesting a material reduction in funded contract value in the most recent periods.

How to interpret this page

This summary is based on FPDS award obligation data for the last 10 years and reflects reported obligated dollars, award counts, and category rollups by agency, NAICS, and fiscal year. Totals and averages are derived from the provided dataset and may include multiple awards within the same program or ordering vehicle.

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 = '75EV5'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
2100 DEPT OF THE ARMY 1,774,999,987.20 1.77 billion 5
97AS DEFENSE LOGISTICS AGENCY 190,800,000.00 190.80 million 3
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 166,950,000.00 166.95 million 4

Insight

Over the last 10 years, IHEALTH LABS INC. has $2.13 billion in obligated awards across 12 awards, with spending highly concentrated in the DEPT OF THE ARMY, which accounts for $1.77 billion across 5 awards. The remaining obligations are distributed primarily across the DEFENSE LOGISTICS AGENCY ($190.80 million; 3 awards) and the ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE ($166.95 million; 4 awards). This pattern indicates a strong reliance on a single lead agency, with materially smaller but recurring award activity at two additional agencies.

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 = '75EV5'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
325413 IN-VITRO DIAGNOSTIC SUBSTANCE MANUFACTURING 2,132,749,987.20 2.13 billion 12

Insight

Over the last 10 years, IHEALTH LABS INC. (CAGE 75EV5) shows complete concentration in NAICS 325413, In-Vitro Diagnostic Substance Manufacturing. All 12 awards and the full $2.13 billion in obligated dollars are attributed to this single NAICS, indicating a highly focused contracting profile with no observable diversification across other industry codes in the provided period. The average award value of $177.7 million further suggests relatively large-value obligations within this NAICS.

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 = '75EV5'
        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 DESC
Year Total Obligated Readable Award Actions
2024 0.00 0.00 2
2023 166,950,000.00 166.95 million 4
2022 1,965,799,987.20 1.97 billion 6

Insight

IHEALTH LABS INC. has $2.13 billion in obligated awards across 12 awards over the last 10 years, with an average award value of $177.7 million. Obligations are highly concentrated in 2022, which accounts for $1.97 billion across 6 awards, or most of the reported activity. Activity declined sharply in 2023 to $166.95 million across 4 awards and was $0 in 2024, indicating a recent drop in obligation volume.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.