Federal Contractor

LOGISTICS HEALTH, INC. Federal Contract Obligations (Last Year)

Federal procurement profile for LOGISTICS HEALTH, INC. (CAGE 1RTW6, UEI G5XXLHZSW8X3) covering last full-year obligations and award activity.

LOGISTICS HEALTH, INC. recorded 59 award actions and $3,643,711,339.07 in obligations in the last full year, with activity concentrated almost entirely at the Department of Veterans Affairs. The company’s obligations were primarily tied to NAICS 621111, Offices of Physicians (except Mental Health Specialists), with smaller awards in outpatient and ambulatory health care categories.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect FPDS-observed obligated dollars for the analysis window and include a negative obligation entry in the listed agency breakdown.

CAGE Code
1RTW6
UEI
G5XXLHZSW8X3
Total Obligated
3.64 billion
3,643,711,339.07
Award Actions
59
Average Action Value
61,757,819.30

About LOGISTICS HEALTH, INC. federal contract activity

LOGISTICS HEALTH, INC. (CAGE 1RTW6, UEI G5XXLHZSW8X3) recorded $3.64 billion in obligated awards across 59 awards in the last full year, for an average award value of about $61.76 million. The vendor’s profile is highly concentrated in health care services, with spending volume dominated by a small number of large obligations.

Agency mix and customer concentration

The Department of Veterans Affairs accounted for nearly all obligations, with $3.61 billion across 44 awards, indicating a strongly concentrated customer base. Smaller activity came from the Department of the Army and the Centers for Disease Control and Prevention, while the Defense Health Agency shows a negative obligated total in the period, which may reflect deobligations or other contract adjustments.

Industry profile based on NAICS activity

NAICS 621111, Offices of Physicians (Except Mental Health Specialists), drove the portfolio with $3.63 billion across 50 awards and accounts for the overwhelming share of obligations. The remaining activity was concentrated in NAICS 621498 and 621999, both at materially lower dollar levels, reinforcing that the vendor’s federal business is centered on outpatient and ambulatory health care services.

Annual contract trend over the analysis window

The annual trend shows $3.64 billion in obligated awards in 2025, matching the last full-year analysis window and indicating a fully period-specific snapshot rather than multi-year movement. Because only one year is provided, the data support a point-in-time assessment of scale and concentration, not a longitudinal growth analysis.

How to interpret this page

This summary is based on FPDS-obligated award data for the last full year, aggregated by vendor identifiers (CAGE 1RTW6 and UEI G5XXLHZSW8X3). Agency and NAICS concentrations are derived from total obligated dollars and award counts, and the negative obligation value is presented as reported without interpretation beyond noting it may indicate adjustments.

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 = '1RTW6'
        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
3600 VETERANS AFFAIRS, DEPARTMENT OF 3,614,478,812.15 3.61 billion 44
2100 DEPT OF THE ARMY 21,265,256.88 21.27 million 5
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 8,317,625.68 8.32 million 5
7570 OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION (ASA) 399,553.51 399.55 thousand 4
97DH DEFENSE HEALTH AGENCY (DHA) -749,909.15 -749.91 thousand 1

Insight

LOGISTICS HEALTH, INC. received 59 awards totaling $3.64 billion in the last full year, with an average award value of $61.76 million. Obligations were highly concentrated in the Department of Veterans Affairs, which accounted for $3.61 billion across 44 awards, or the vast majority of total obligated dollars. The remaining agencies contributed comparatively small shares, led by the Department of the Army at $21.27 million and CDC at $8.32 million, while smaller obligations from ASA and a negative obligation under DHA indicate limited activity outside VA.

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 = '1RTW6'
        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
621111 OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS) 3,634,994,159.88 3.63 billion 50
621498 ALL OTHER OUTPATIENT CARE CENTERS 8,317,625.68 8.32 million 5
621999 ALL OTHER MISCELLANEOUS AMBULATORY HEALTH CARE SERVICES 399,553.51 399.55 thousand 4

Insight

Over the last full year, LOGISTICS HEALTH, INC. (CAGE 1RTW6) received $3.64 billion across 59 awards, with activity heavily concentrated in NAICS 621111, Offices of Physicians (Except Mental Health Specialists). That code accounts for $3.63 billion and 50 awards, representing nearly all obligated value in the period. The remaining obligations are minimal and are spread across NAICS 621498 ($8.32 million, 5 awards) and NAICS 621999 ($399.55 thousand, 4 awards), indicating a highly concentrated award profile.

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 = '1RTW6'
        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 3,643,711,339.07 3.64 billion 59

Insight

In the last full year, LOGISTICS HEALTH, INC. recorded $3.64 billion in obligated value across 59 awards, yielding an average award value of about $61.8 million. This indicates a highly concentrated award profile with substantial dollar volume spread across a relatively limited number of actions. With only one year provided in the 1-year window, no year-over-year trend can be assessed from the available 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.