Federal Contractor

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

WALSH FEDERAL, LLC has received 605 federal award actions totaling $1.82 billion over the last 5 years, led by Department of the Army and Department of the Navy obligations.

WALSH FEDERAL, LLC, CAGE 6PDH6 and UEI DMFWBVTL9324, recorded 605 award actions with total obligations of $1,819,964,382.98 in the last 5 years. Most of its federal activity was concentrated in commercial and institutional building construction, with additional obligations in industrial building construction and air traffic control.

Generated at 03/21/2026

Analysis period: Last 5 years

Agency, NAICS, and annual totals reflect the specified 5-year analysis window and are based on obligated amounts and award counts provided.

CAGE Code
6PDH6
UEI
DMFWBVTL9324
Total Obligated
1.82 billion
1,819,964,382.98
Award Actions
605
Average Action Value
3,008,205.59

About WALSH FEDERAL, LLC federal contract activity

WALSH FEDERAL, LLC accumulated 1.82 billion in obligated contract value across 605 awards over the last 5 years, with an average award value of 3.01 million. The profile indicates a high-volume federal contractor with concentration in large construction and infrastructure-related awards.

Agency mix and customer concentration

Obligations are concentrated in the DEPT OF THE ARMY and DEPT OF THE NAVY, which together account for 1.56 billion across 517 awards. The remaining top agencies are the FEDERAL AVIATION ADMINISTRATION and U.S. COAST GUARD, indicating a customer base spanning defense and civilian transportation-related buyers.

Industry profile based on NAICS activity

The vendor’s work is dominated by NAICS 236220, COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION, which represents 1.55 billion and 555 awards. NAICS 236210, INDUSTRIAL BUILDING CONSTRUCTION, is the second-largest line of business at 249.03 million, while smaller activity appears in air traffic control and limited professional services.

Annual contract trend over the analysis window

Annual obligations peaked in 2023 at 701.43 million before moderating to 252.80 million in 2024 and rebounding to 487.82 million in 2025. Award counts followed a similar pattern of elevated activity, with 159 awards in 2025 after 151 in 2024 and 134 in 2023, compared with 64 in 2021.

How to interpret this page

This analysis uses FPDS obligations recorded under CAGE 6PDH6 and UEI DMFWBVTL9324 for the last 5 years. Totals, counts, and averages reflect obligated contract value only and are summarized by agency, NAICS, and fiscal year based on the supplied dataset.

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 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 798,894,929.63 798.89 million 362
1700 DEPT OF THE NAVY 764,483,445.59 764.48 million 155
6920 FEDERAL AVIATION ADMINISTRATION 181,571,219.00 181.57 million 32
7008 U.S. COAST GUARD 75,014,788.76 75.01 million 56

Insight

Over the last 5 years, WALSH FEDERAL, LLC received $1.82 billion across 605 awards, with obligations concentrated primarily in two defense agencies. The Department of the Army accounted for $798.89 million across 362 awards and the Department of the Navy for $764.48 million across 155 awards, together representing the vast majority of observed obligations. Non-DoD activity was materially smaller, led by the Federal Aviation Administration at $181.57 million and the U.S. Coast Guard at $75.01 million, indicating a distribution dominated by Army and Navy spending.

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 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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 1,545,117,466.36 1.55 billion 555
236210 INDUSTRIAL BUILDING CONSTRUCTION 249,025,295.74 249.03 million 40
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

WALSH FEDERAL, LLC’s obligations over the last 5 years are highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for $1.55 billion across 555 awards, or the clear majority of its $1.82 billion total. NAICS 236210, Industrial Building Construction, is a distant second at $249.03 million across 40 awards, while NAICS 488111, Air Traffic Control, contributes a much smaller $25.20 million across 9 awards. NAICS 541990 is immaterial at $622.10 thousand and 1 award, indicating the vendor’s federal activity is overwhelmingly concentrated in construction-related work.

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 5 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

Insight

WALSH FEDERAL, LLC obligated $1.82 billion across 605 awards over the last 5 years, with an average award value of $3.01 million. Obligations are unevenly distributed, with 2023 representing the peak year at $701.43 million, followed by 2025 at $487.82 million, while 2021 was the lowest year at $112.29 million. Award counts were highest in 2025 and 2024 (159 and 151 awards, respectively), indicating that recent activity is concentrated in a larger number of awards, though 2023 carried the highest dollar volume.

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.