Federal Contractor

ABBOTT RAPID DX NORTH AMERICA, LLC Federal Contract Obligations (Last Year)

ABBOTT RAPID DX NORTH AMERICA, LLC (CAGE 5C4F2, UEI P782RNU1NNK3) recorded 274 federal award actions totaling $1.15 million in the last full year.

ABBOTT RAPID DX NORTH AMERICA, LLC is a federal vendor with most of its obligated activity tied to the Defense Logistics Agency, which accounted for 240 actions and about $1.04 million. Smaller award volumes also appear under the Defense Health Agency, the Department of State, Indian Health Service, and the Department of Veterans Affairs.

Generated at 03/21/2026

Analysis period: Last full year

This page summarizes the last full year of FPDS-observed obligations and award counts; negative totals reflect deobligations or adjustments.

CAGE Code
5C4F2
UEI
P782RNU1NNK3
Total Obligated
1.15 million
1,150,402.70
Award Actions
274
Average Action Value
4,198.55

About ABBOTT RAPID DX NORTH AMERICA, LLC federal contract activity

ABBOTT RAPID DX NORTH AMERICA, LLC recorded $1.15 million in obligated federal awards across 274 actions in the last full year, for an average award value of $4,198.55. The profile is heavily transaction-driven, with procurement activity concentrated in a large number of relatively small awards.

Agency mix and customer concentration

The Defense Logistics Agency accounted for the largest share of obligations at $1.04 million across 240 awards, making it the clear primary customer. Smaller positive obligations came from the Defense Health Agency and the Department of State, while negative obligations at the Department of Veterans Affairs and Indian Health Service indicate deobligations or post-award adjustments that offset prior funding.

Industry profile based on NAICS activity

Awarding activity was concentrated in NAICS 423450, Medical, Dental, and Hospital Equipment and Supplies Merchant Wholesalers, which represented the largest obligation total and most awards. Secondary activity appeared in Analytical Laboratory Instrument Manufacturing and Software Publishers, with limited additional obligations in Surgical and Medical Instrument Manufacturing and Medical Laboratories, suggesting a medical diagnostics and equipment-related federal buying pattern.

Annual contract trend over the analysis window

All reported activity in the analysis window is captured in 2025, with $1.15 million obligated across 274 awards. Because only one annual point is available, the trend view reflects a single-year snapshot rather than a multi-year trajectory.

How to interpret this page

This summary is based on FPDS-observed obligations for the vendor identified by CAGE 5C4F2 and UEI P782RNU1NNK3 during the last full year. Agency and NAICS mix reflect obligations and award counts as reported in the provided dataset; negative obligation values are preserved as recorded and may reflect modifications, corrections, or deobligations.

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 = '5C4F2'
        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,039,613.57 1.04 million 240
97DH DEFENSE HEALTH AGENCY (DHA) 503,212.00 503.21 thousand 2
1900 STATE, DEPARTMENT OF 156,587.25 156.59 thousand 13
7527 INDIAN HEALTH SERVICE -865.00 -865.00 2
3600 VETERANS AFFAIRS, DEPARTMENT OF -548,145.12 -548.15 thousand 17

Insight

ABBOTT RAPID DX NORTH AMERICA, LLC’s last full year obligations were concentrated in the Defense Logistics Agency, which accounted for $1.04 million across 240 awards, or the clear majority of the vendor’s $1.15 million in total obligations. The Defense Health Agency was the second-largest buyer at $503.21 thousand but with only 2 awards, indicating a much less frequent but higher-value purchasing pattern. State, Department of State added $156.59 thousand across 13 awards, while Indian Health Service and the Department of Veterans Affairs recorded net negative obligations, reducing the vendor’s overall obligation total.

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 = '5C4F2'
        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
423450 MEDICAL, DENTAL, AND HOSPITAL EQUIPMENT AND SUPPLIES MERCHANT WHOLESALERS 1,185,493.82 1.19 million 252
334516 ANALYTICAL LABORATORY INSTRUMENT MANUFACTURING 524,382.04 524.38 thousand 4
511210 SOFTWARE PUBLISHERS 88,796.00 88.80 thousand 2
339112 SURGICAL AND MEDICAL INSTRUMENT MANUFACTURING 26,600.00 26.60 thousand 1
621511 MEDICAL LABORATORIES 10,707.00 10.71 thousand 1
325413 IN-VITRO DIAGNOSTIC SUBSTANCE MANUFACTURING -685,576.16 -685.58 thousand 14

Insight

ABBOTT RAPID DX NORTH AMERICA, LLC’s Top NAICS profile is highly concentrated in NAICS 423450, Medical, Dental, and Hospital Equipment and Supplies Merchant Wholesalers, which accounts for 252 of 274 awards and $1.19 million in obligations over the last full year. Secondary activity is much smaller and spread across NAICS 334516 and 511210, with $524.4 thousand and $88.8 thousand obligated, respectively, while the remaining NAICS categories each represent limited dollar value and few awards. NAICS 325413 shows a net negative obligated amount of $685.6 thousand across 14 awards, indicating offsets or deobligations that materially reduce the vendor’s net obligated total.

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 = '5C4F2'
        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,150,402.70 1.15 million 274

Insight

During the last full year, ABBOTT RAPID DX NORTH AMERICA, LLC (CAGE 5C4F2) recorded 274 awards totaling $1.15 million. Obligations are concentrated across a relatively high number of actions, with an average award value of $4,198.55, indicating a distribution dominated by small-dollar awards. With only one year of data in this window, no multi-year trend can be assessed from the provided information.

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.