Federal Contractor

CADDELL CONSTRUCTION CO. (DE), LLC Federal Contract Obligations (Last 5 Years)

FPDS vendor profile for CADDELL CONSTRUCTION CO. (DE), LLC, CAGE 6K4W4, UEI ELJMJND6DDF3, covering federal obligations over the last 5 years.

CADDELL CONSTRUCTION CO. (DE), LLC received 600 award actions totaling 3.68 billion in obligated federal funds during the last 5 years, with an average action value of 6.13 million. Most obligations were tied to the Department of State and commercial and institutional building construction work under NAICS 236220.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect obligations recorded in FPDS for the stated analysis window and may include multiple actions across agencies, years, and award types.

CAGE Code
6K4W4
UEI
ELJMJND6DDF3
Total Obligated
3.68 billion
3,676,762,968.16
Award Actions
600
Average Action Value
6,127,938.28

About CADDELL CONSTRUCTION CO. (DE), LLC federal contract activity

CADDELL CONSTRUCTION CO. (DE), LLC recorded $3.68 billion in FPDS obligations across 600 awards over the last 5 years, for an average award value of $6.13 million. The vendor’s activity is heavily concentrated, with one agency and one primary NAICS accounting for nearly all obligated dollars.

Agency mix and customer concentration

The Department of State is the dominant customer by a wide margin, responsible for $3.53 billion across 405 awards, or roughly 96% of total obligated value. The remaining agency base is much smaller, led by the Department of the Army at $111.18 million across 177 awards, followed by U.S. Customs and Border Protection at $36.96 million across 11 awards; the Department of the Navy and the Bureau of Prisons represent only minor follow-on activity.

Industry profile based on NAICS activity

Procurement activity is overwhelmingly classified under NAICS 236220, Commercial and Institutional Building Construction, which accounts for $3.68 billion across 599 awards. Only one other NAICS appears in the period, 334517, Irradiation Apparatus Manufacturing, at $80,000 on a single award, indicating that the vendor’s federal work is almost entirely construction-related.

Annual contract trend over the analysis window

Annual obligations were highly uneven. Activity peaked in 2022 at $2.20 billion across 130 awards, remained elevated in 2024 at $968.92 million across 99 awards, and then declined to $218.27 million across 81 awards in 2025; 2021 and 2023 were materially lower at $248.57 million and $40.55 million, respectively.

How to interpret this page

This summary uses FPDS obligations for the last 5 years tied to CAGE code 6K4W4 and UEI ELJMJND6DDF3. Totals, award counts, agency mix, NAICS mix, and annual trend figures are taken directly from the provided dataset; percentages and interpretation are derived from those reported values without adding unstated assumptions.

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 = '6K4W4'
        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
1900 STATE, DEPARTMENT OF 3,526,472,303.64 3.53 billion 405
2100 DEPT OF THE ARMY 111,182,774.52 111.18 million 177
7014 U.S. CUSTOMS AND BORDER PROTECTION 36,964,138.00 36.96 million 11
1700 DEPT OF THE NAVY 1,700,000.00 1.70 million 5
1540 FEDERAL PRISON SYSTEM / BUREAU OF PRISONS 443,752.00 443.75 thousand 2

Insight

Over the last 5 years, CADDELL CONSTRUCTION CO. (DE), LLC’s obligations are highly concentrated with the Department of State, which accounts for $3.53 billion of the firm’s $3.68 billion total obligate. The Department of the Army is a distant second at $111.18 million, followed by U.S. Customs and Border Protection at $36.96 million; all other listed agencies are materially smaller. Award activity is similarly concentrated, with 405 of 600 awards from State and 177 from the Army, indicating a strong reliance on a small set of federal customers.

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 = '6K4W4'
        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 3,676,682,968.16 3.68 billion 599
334517 IRRADIATION APPARATUS MANUFACTURING 80,000.00 80.00 thousand 1

Insight

Over the last 5 years, CADDELL CONSTRUCTION CO. (DE), LLC’s obligated dollars are overwhelmingly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for $3.6767 billion across 599 awards. This represents essentially the entire $3.6768 billion in total obligations and 600 awards, indicating a highly concentrated portfolio with minimal NAICS diversification. The only other recorded NAICS activity is a single $80,000 award in NAICS 334517, Irradiation Apparatus Manufacturing, which is immaterial relative to the vendor’s overall contracting volume.

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 = '6K4W4'
        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 218,270,671.50 218.27 million 81
2024 968,917,527.59 968.92 million 99
2023 40,546,956.31 40.55 million 119
2022 2,200,459,658.84 2.20 billion 130
2021 248,568,153.92 248.57 million 171

Insight

Obligations for CADDELL CONSTRUCTION CO. (DE), LLC are highly concentrated in 2022, which accounts for $2.20 billion of the $3.68 billion obligated over the last 5 years, far exceeding every other year. After that peak, annual obligations declined sharply to $40.55 million in 2023, then rebounded to $968.92 million in 2024 and $218.27 million in 2025. Award volume does not move in the same pattern as dollars: the highest award count occurred in 2021 (171 awards), while 2022 carried the largest dollar value with 130 awards, indicating a smaller number of larger-value awards drove the funding concentration.

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.