Federal Contractor

WALSH FEDERAL, LLC Federal Contract Obligations (Last 10 Years)

WALSH FEDERAL, LLC has received 795 federal awards totaling $2.48 billion over the last 10 years, led by Navy and Army construction work.

WALSH FEDERAL, LLC (CAGE 6PDH6, UEI DMFWBVTL9324) shows a federal contracting profile concentrated in construction and related support services. Most of the obligated dollars are tied to DEPT OF THE NAVY and DEPT OF THE ARMY, with commercial and institutional building construction accounting for the largest share of activity.

Generated at 03/21/2026

Analysis period: Last 10 years

This summary covers the last 10 years of FPDS-observed obligations and awards for WALSH FEDERAL, LLC.

CAGE Code
6PDH6
UEI
DMFWBVTL9324
Total Obligated
2.48 billion
2,480,850,829.51
Award Actions
795
Average Action Value
3,120,567.08

About WALSH FEDERAL, LLC federal contract activity

WALSH FEDERAL, LLC recorded 2.48 billion in obligated contract value across 795 awards over the last 10 years, with an average award value of 3.12 million. The vendor’s activity is concentrated in large-volume federal construction and related service work, indicating a sustained role on recurring infrastructure and facility projects.

Agency mix and customer concentration

The Department of the Navy is the largest customer by obligated value at 1.22 billion across 230 awards, followed closely by the Department of the Army at 995.77 million across 476 awards. Smaller but still material obligations came from the Federal Aviation Administration and the U.S. Coast Guard, showing that the vendor’s federal footprint extends beyond the defense departments into transportation and maritime agencies.

Industry profile based on NAICS activity

Contracting is dominated by NAICS 236220, Commercial and Institutional Building Construction, which accounts for 2.17 billion and 742 awards. NAICS 236210, Industrial Building Construction, is the secondary concentration at 284.14 million, while 488111, Air Traffic Control, represents a smaller but notable niche; other categories are minimal by comparison.

Annual contract trend over the analysis window

Annual obligations show a strong upward pattern in the most recent years, with 2023 peaking at 701.43 million and 2025 already at 487.82 million. Earlier years were materially lower, including 112.29 million in 2021 and 265.62 million in 2022, indicating a significant increase in award volume and/or contract size over time.

How to interpret this page

This summary is based on FPDS award records for WALSH FEDERAL, LLC matched to CAGE code 6PDH6 and UEI DMFWBVTL9324 over the last 10 years. Obligated dollars and award counts are aggregated from the provided analysis window, with agency, NAICS, and annual trends ranked by total obligated value.

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 = '6PDH6'
        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
1700 DEPT OF THE NAVY 1,219,765,292.59 1.22 billion 230
2100 DEPT OF THE ARMY 995,774,086.16 995.77 million 476
6920 FEDERAL AVIATION ADMINISTRATION 181,571,219.00 181.57 million 32
7008 U.S. COAST GUARD 83,740,231.76 83.74 million 57

Insight

Over the last 10 years, WALSH FEDERAL, LLC has obligated $2.48 billion across 795 awards, with activity concentrated in two defense agencies. The DEPT OF THE NAVY is the largest customer at $1.22 billion across 230 awards, followed closely by the DEPT OF THE ARMY at $995.77 million across 476 awards; together, these two agencies account for nearly 89% of total obligations. Non-defense activity is materially smaller, led by the FAA at $181.57 million and the U.S. Coast Guard at $83.74 million, indicating a broad but highly concentrated agency mix.

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 = '6PDH6'
        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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 2,170,893,912.89 2.17 billion 742
236210 INDUSTRIAL BUILDING CONSTRUCTION 284,135,295.74 284.14 million 43
488111 AIR TRAFFIC CONTROL 25,199,518.88 25.20 million 9
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 622,102.00 622.10 thousand 1

Insight

Over the last 10 years, WALSH FEDERAL, LLC’s obligations are heavily concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for $2.17 billion across 742 awards, or nearly all of the vendor’s $2.48 billion total obligated amount. A much smaller share is associated with NAICS 236210, Industrial Building Construction, at $284.14 million over 43 awards, while NAICS 488111, Air Traffic Control, contributes $25.20 million across 9 awards. NAICS 541990 appears as a one-off obligation of $622.10 thousand, indicating the vendor’s award profile is dominated by construction-related work with limited diversification into other sectors.

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 = '6PDH6'
        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
2025 487,824,895.43 487.82 million 159
2024 252,803,665.08 252.80 million 151
2023 701,431,086.55 701.43 million 134
2022 265,619,554.50 265.62 million 97
2021 112,285,181.42 112.29 million 64
2020 212,924,821.00 212.92 million 43
2019 333,755,802.04 333.76 million 73
2018 15,106,982.49 15.11 million 35
2017 99,098,841.00 99.10 million 39

Insight

Over the last 10 years, WALSH FEDERAL, LLC (CAGE 6PDH6) obligated $2.48 billion across 795 awards, with activity heavily concentrated in the most recent years. Annual obligations peaked in 2023 at $701.43 million, followed by 2025 at $487.82 million and 2024 at $252.80 million, indicating a pronounced upward shift after 2021. Earlier years were materially lower and more variable, ranging from $15.11 million in 2018 to $333.76 million in 2019, with award counts generally rising over time from 35 in 2018 to 159 in 2025.

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.