Federal Contractor

HARPER CONSTRUCTION COMPANY, INC. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for HARPER CONSTRUCTION COMPANY, INC. (CAGE 1V0E0, UEI GMJPZCJDUG24) covering contract obligations and award activity over the last 10 years.

Over the last 10 years, HARPER CONSTRUCTION COMPANY, INC. received 645 award actions totaling 2.62 billion in federal obligations, with an average action value of 4.07 million. Most of this activity came from the Department of the Navy and Department of the Army, and the firm’s obligations were concentrated in commercial and institutional building construction.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect obligated amounts and award actions in the selected 10-year window; annual and category totals are based on the provided FPDS summary data.

CAGE Code
1V0E0
UEI
GMJPZCJDUG24
Total Obligated
2.62 billion
2,622,613,010.20
Award Actions
645
Average Action Value
4,066,066.68

About HARPER CONSTRUCTION COMPANY, INC. federal contract activity

HARPER CONSTRUCTION COMPANY, INC. (CAGE 1V0E0, UEI GMJPZCJDUG24) recorded $2.62 billion in obligated federal awards across 645 awards over the last 10 years, for an average award value of $4.07 million. The profile is heavily concentrated in construction-related work, indicating sustained participation in federal building and infrastructure contracting.

Agency mix and customer concentration

The Department of the Navy is the dominant customer, accounting for $1.84 billion across 486 awards, or the clear majority of identified obligations. The Department of the Army is the second-largest buyer at $777.97 million across 158 awards, while U.S. Customs and Border Protection appears only marginally with one award and no obligated value reported.

Industry profile based on NAICS activity

Contracting is overwhelmingly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which represents $2.57 billion across 640 awards. NAICS 237310, Highway, Street, and Bridge Construction, is a small secondary line of business at $47.95 million across 4 awards, showing limited diversification beyond core vertical construction.

Annual contract trend over the analysis window

Recent annual activity remains elevated, with obligations of $256.52 million in 2021, $265.39 million in 2022, $192.32 million in 2023, $538.68 million in 2024, and $435.69 million in 2025. The pattern shows a strong rebound in 2024 followed by continued high volume in 2025, though awards are distributed unevenly year to year.

How to interpret this page

This summary is based on FPDS-observed obligations and award counts for the last 10 years, grouped by agency, NAICS, and fiscal year. Amounts are presented as obligated dollars and rounded for readability; agency and NAICS concentrations reflect only the data provided in the analysis window.

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 = '1V0E0'
        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,844,645,348.92 1.84 billion 486
2100 DEPT OF THE ARMY 777,967,661.28 777.97 million 158
7014 U.S. CUSTOMS AND BORDER PROTECTION 0.00 0.00 1

Insight

Over the last 10 years, HARPER CONSTRUCTION COMPANY, INC. received $2.62 billion across 645 awards, with an average award value of $4.07 million. Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $1.84 billion and 486 awards, followed by the DEPT OF THE ARMY with $777.97 million and 158 awards. U.S. CUSTOMS AND BORDER PROTECTION shows one award with no obligated value, indicating minimal activity outside the two primary agencies.

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 = '1V0E0'
        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,574,660,006.20 2.57 billion 640
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 47,953,004.00 47.95 million 4

Insight

Over the last 10 years, HARPER CONSTRUCTION COMPANY, INC. received 2.62 billion across 645 awards, with an average award value of 4.07 million. Obligations are highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for 2.57 billion and 640 awards, or nearly all activity in the period. NAICS 237310, Highway, Street, and Bridge Construction, is a minor secondary category at 47.95 million across 4 awards, indicating limited diversification beyond building construction.

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 = '1V0E0'
        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 435,690,361.79 435.69 million 59
2024 538,684,597.61 538.68 million 69
2023 192,319,812.30 192.32 million 103
2022 265,391,703.28 265.39 million 80
2021 256,518,030.06 256.52 million 68
2020 237,141,864.51 237.14 million 74
2019 278,462,778.85 278.46 million 72
2018 345,861,278.57 345.86 million 74
2017 72,542,583.23 72.54 million 46

Insight

Over the last 10 years, HARPER CONSTRUCTION COMPANY, INC. received $2.62 billion across 645 awards, averaging about $4.07 million per award. Obligations are unevenly distributed, with the highest annual totals in 2024 ($538.68 million) and 2025 ($435.69 million), while 2017 was materially lower at $72.54 million, indicating a pronounced increase in recent years. Award volume peaked in 2023 at 103 awards, but the highest-dollar years were 2024 and 2025, suggesting larger average obligations in the most recent 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.