Federal Contractor

OWENS & MINOR DISTRIBUTION, INC. Federal Contract Obligations (Last Year)

Federal procurement summary for OWENS & MINOR DISTRIBUTION, INC. (CAGE 9C381, UEI FBK9DN1ACF95) covering obligations, awards, agencies, and NAICS activity in the last full year.

OWENS & MINOR DISTRIBUTION, INC. recorded 131,669 award actions and $194,646,799.81 in total obligations during the last full year, for an average action value of $1,478.30. Activity was concentrated almost entirely with the Defense Logistics Agency and the medical supplies wholesale NAICS category.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the last full year; agency and NAICS rows may include zero-obligation actions that still count toward award activity.

CAGE Code
9C381
UEI
FBK9DN1ACF95
Total Obligated
194.65 million
194,646,799.81
Award Actions
131,669
Average Action Value
1,478.30

About OWENS & MINOR DISTRIBUTION, INC. federal contract activity

OWENS & MINOR DISTRIBUTION, INC. recorded 194.65 million in obligations across 131,669 awards during the last full year, for an average award value of 1,478.3. The activity profile is highly fragmented, indicating a very large volume of low-dollar procurement actions rather than a small number of large awards.

Agency mix and customer concentration

The vendor’s obligations were overwhelmingly concentrated in the Defense Logistics Agency, which accounted for 194.65 million and 131,667 awards. The only other agency in the period was the National Institutes of Health, which recorded two awards with no obligated value reported, suggesting minimal non-DoD activity.

Industry profile based on NAICS activity

Contracting was dominated by NAICS 423450, Medical, Dental, and Hospital Equipment and Supplies Merchant Wholesalers, which represented 194.15 million and 131,658 awards. Smaller activity appeared under NAICS 339112, Surgical and Medical Instrument Manufacturing, while NAICS 334516 recorded two awards with no obligated value.

Annual contract trend over the analysis window

The annual trend shows all reported activity in 2025, with 194.65 million obligated across 131,669 awards. With only one year in the analysis window, this view supports a point-in-time assessment rather than a multi-year growth or decline interpretation.

How to interpret this page

This summary uses FPDS obligation data for the last full year associated with CAGE code 9C381 and UEI FBK9DN1ACF95. Dollar values reflect total obligated amounts and award counts reflect reported FPDS award records in the analysis window; zero-obligation records are included where shown in the underlying aggregates.

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 = '9C381'
        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 194,646,799.81 194.65 million 131,667
7529 NATIONAL INSTITUTES OF HEALTH 0.00 0.00 2

Insight

OWENS & MINOR DISTRIBUTION, INC. shows extreme agency concentration in the last full year, with 194.65 million in total obligated dollars spread across 131,669 awards and an average award value of 1,478.30. The Defense Logistics Agency accounted for essentially all obligation volume, with 194.65 million across 131,667 awards, indicating a highly concentrated procurement relationship. The National Institutes of Health recorded only 2 awards with no obligated dollars, which does not materially affect the distribution.

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 = '9C381'
        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 194,154,197.66 194.15 million 131,658
339112 SURGICAL AND MEDICAL INSTRUMENT MANUFACTURING 492,602.15 492.60 thousand 9
334516 ANALYTICAL LABORATORY INSTRUMENT MANUFACTURING 0.00 0.00 2

Insight

OWENS & MINOR DISTRIBUTION, INC. shows a highly concentrated NAICS profile in the last full year, with NAICS 423450 accounting for 194.15 million of 194.65 million in total obligated value and 131,658 of 131,669 awards. This indicates that the vendor’s activity is overwhelmingly centered on medical, dental, and hospital equipment and supplies wholesale transactions. A much smaller share of obligation value is associated with NAICS 339112, and NAICS 334516 reflects award activity with no obligated value, suggesting only limited diversification outside the primary wholesale classification.

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 = '9C381'
        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 194,646,799.81 194.65 million 131,669

Insight

OWENS & MINOR DISTRIBUTION, INC. received $194.65 million in obligated funding across 131,669 awards during the last full year. The activity is highly dispersed by count, with a very large number of awards averaging about $1,478 each, indicating a high-volume, low-dollar transaction profile. With only one year in the window, no year-over-year trend can be assessed from the provided data.

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.