IHEALTH LABS INC. recorded $2.13 billion in obligated federal awards across 12 actions in the last 5 years, with an average action value of $177.73 million. Most of the spending is concentrated in the Department of the Army, followed by the Defense Logistics Agency and the Administration for Strategic Preparedness and Response.
Federal Contractor
IHEALTH LABS INC. Federal Contract Obligations (Last 5 Years)
Federal procurement profile for IHEALTH LABS INC. (CAGE 75EV5, UEI RSKJC51FNLR3) covering obligations and award activity over the last 5 years.
Annual totals show $1.97 billion in 2022, $166.95 million in 2023, and $0 in 2024, with all reported obligations under NAICS 325413.
About IHEALTH LABS INC. federal contract activity
IHEALTH LABS INC. (CAGE 75EV5, UEI RSKJC51FNLR3) recorded 12 FPDS awards totaling 2.13 billion over the last 5 years, for an average award value of 177.73 million. The contracting profile is concentrated in a small number of large transactions, indicating significant federal demand with limited award frequency.
Agency mix and customer concentration
The DEPT OF THE ARMY accounts for the majority of obligations at 1.77 billion across 5 awards, making it the dominant buying agency. Smaller but material activity is also visible at the DEFENSE LOGISTICS AGENCY and the ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE, which together contributed 357.75 million across 7 awards.
Industry profile based on NAICS activity
All reported obligations fall under NAICS 325413, IN-VITRO DIAGNOSTIC SUBSTANCE MANUFACTURING, which represents the full 2.13 billion in observed contracting. This indicates a highly concentrated product and market profile tied to diagnostic substance manufacturing.
Annual contract trend over the analysis window
Obligations were heavily concentrated in 2022 at 1.97 billion across 6 awards, followed by a decline to 166.95 million in 2023 across 4 awards. In 2024, the record shows 2 awards with zero obligated dollars, suggesting activity without recorded obligations or incomplete fiscal-year funding at the time of analysis.
How to interpret this page
This summary uses FPDS award records associated with CAGE 75EV5 and UEI RSKJC51FNLR3 over the last 5 years. Obligation totals, award counts, agency shares, NAICS concentration, and annual trend figures are derived directly from the provided dataset and rounded only where shown as readable values.
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 5 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 5 years, IHEALTH LABS INC. received 2.13 billion in obligations across 12 awards, with an average award value of 177.73 million. Obligations are highly concentrated at the DEPT OF THE ARMY, which accounts for 1.77 billion across 5 awards, or roughly 83% of total obligated dollars. The remaining obligations are split between DEFENSE LOGISTICS AGENCY at 190.80 million across 3 awards and ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE at 166.95 million across 4 awards, indicating a limited but diversified secondary customer base.
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 5 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 5 years, IHEALTH LABS INC. has all recorded obligations concentrated in NAICS 325413, In-Vitro Diagnostic Substance Manufacturing. The vendor’s 12 awards under this NAICS account for the full $2.13 billion obligated, indicating complete category concentration with no diversification across other NAICS codes in the provided period. The average award value of about $177.7 million suggests a small number of high-dollar actions rather than broad, distributed activity.
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 5 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. received 2.13 billion in obligations across 12 awards over the last 5 years, with an average award value of 177.7 million. Obligations are highly concentrated in 2022, when 1.97 billion was obligated across 6 awards, representing the dominant share of activity in the period. Activity declined in 2023 to 166.95 million across 4 awards and fell to zero obligated in 2024, indicating a sharp year-to-year contraction after the 2022 peak.
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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.