Federal Contractor

CLARK CONSTRUCTION GROUP, LLC Federal Contract Obligations (Last Year)

CLARK CONSTRUCTION GROUP, LLC recorded 117 federal award actions in the last full year, with $439.41 million obligated across agency and construction work.

CLARK CONSTRUCTION GROUP, LLC (CAGE 075M7, UEI QQBXQR679KM9) obligated $439,414,816.42 across 117 award actions in the last full year, for an average action value of $3,755,682.19. The work was concentrated in NAICS 236220, Commercial and Institutional Building Construction, and was led by the Department of the Army, Department of the Navy, and National Institutes of Health.

Generated at 03/21/2026

Analysis period: Last full year

Agency, NAICS, and annual totals reflect the provided last-full-year FPDS analysis window and may include multiple actions tied to the same vendor.

CAGE Code
075M7
UEI
QQBXQR679KM9
Total Obligated
439.41 million
439,414,816.42
Award Actions
117
Average Action Value
3,755,682.19

About CLARK CONSTRUCTION GROUP, LLC federal contract activity

CLARK CONSTRUCTION GROUP, LLC (CAGE 075M7, UEI QQBXQR679KM9) recorded 439.41 million in obligated federal spending across 117 awards in the last full year, for an average award value of 3.76 million. The profile indicates a high-volume construction contractor with obligations concentrated in a relatively small number of agencies and a significant share of total value driven by large awards.

Agency mix and customer concentration

The DEPT OF THE ARMY was the dominant customer, accounting for 260.76 million across 59 awards, or well over half of total obligations. The DEPT OF THE NAVY was the second-largest buyer at 87.45 million across 20 awards, followed by the NATIONAL INSTITUTES OF HEALTH at 51.48 million from a single award, while the PUBLIC BUILDINGS SERVICE and the FEDERAL PRISON SYSTEM / BUREAU OF PRISONS represented smaller but still material portions of activity.

Industry profile based on NAICS activity

All reported obligations fell under NAICS 236220, COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION, totaling 439.41 million across 117 awards. This indicates a tightly focused contracting profile centered on building construction work rather than a diversified set of NAICS categories.

Annual contract trend over the analysis window

The annual trend shows 2025 as the only reported year in the analysis window, with 439.41 million obligated across 117 awards. With a single-year snapshot, the data supports a current-period view of sustained federal construction demand rather than a multi-year growth or contraction assessment.

How to interpret this page

This summary is based on FPDS award records for the vendor identified by CAGE 075M7 and UEI QQBXQR679KM9 over the last full year. Obligated dollars, award counts, and agency/NAICS groupings are drawn from the provided analysis aggregates; no additional fields or assumptions were used.

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 = '075M7'
        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
2100 DEPT OF THE ARMY 260,760,196.13 260.76 million 59
1700 DEPT OF THE NAVY 87,447,950.00 87.45 million 20
7529 NATIONAL INSTITUTES OF HEALTH 51,477,000.00 51.48 million 1
4740 PUBLIC BUILDINGS SERVICE 33,206,884.58 33.21 million 18
1540 FEDERAL PRISON SYSTEM / BUREAU OF PRISONS 3,479,366.71 3.48 million 10
3300 SMITHSONIAN INSTITUTION 3,043,419.00 3.04 million 9

Insight

CLARK CONSTRUCTION GROUP, LLC’s obligations in the last full year were concentrated primarily with the Department of the Army, which accounted for $260.76 million across 59 awards, or about 59% of total obligations. The Department of the Navy was the next largest customer at $87.45 million across 20 awards, while the National Institutes of Health was a significant dollar source at $51.48 million but only one award, indicating a highly concentrated transaction. The remaining agencies each represented substantially smaller shares, with GSA’s Public Buildings Service at $33.21 million across 18 awards and all other listed agencies below $3.5 million each.

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 = '075M7'
        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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 439,414,816.42 439.41 million 117

Insight

CLARK CONSTRUCTION GROUP, LLC’s obligations in the last full year are fully concentrated in NAICS 236220, Commercial and Institutional Building Construction. All 117 awards and the full $439.41 million obligated were captured under this single NAICS, indicating a highly concentrated procurement profile with no diversification across other industry codes in the reported period. The average award value was $3.76 million, suggesting a large volume of moderately sized actions within the same construction specialty.

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 = '075M7'
        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 439,414,816.42 439.41 million 117

Insight

In the last full year, CLARK CONSTRUCTION GROUP, LLC (CAGE 075M7) recorded $439.41 million in obligated value across 117 awards, for an average award value of $3.76 million. All reported obligation is concentrated in 2025, indicating a single-year activity profile within the 1-year window rather than a multi-year trend. The award count suggests a moderately distributed obligation base across multiple awards, but the overall annual total remains heavily concentrated in the reporting period.

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.