Federal Contractor

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

HARPER CONSTRUCTION COMPANY, INC. (CAGE 1V0E0, UEI GMJPZCJDUG24) has 379 federal award actions totaling $1.69 billion over the last 5 years.

Federal procurement activity for HARPER CONSTRUCTION COMPANY, INC. is concentrated in construction work, led by the Department of the Navy and the Department of the Army. Most obligated dollars are tied to NAICS 236220, Commercial and Institutional Building Construction, with a smaller share in highway, street, and bridge construction.

Generated at 03/21/2026

Analysis period: Last 5 years

This page summarizes FPDS-observed obligations and award actions for the last 5 years and reflects totals by agency, NAICS, and fiscal year.

CAGE Code
1V0E0
UEI
GMJPZCJDUG24
Total Obligated
1.69 billion
1,688,604,505.04
Award Actions
379
Average Action Value
4,455,420.85

About HARPER CONSTRUCTION COMPANY, INC. federal contract activity

HARPER CONSTRUCTION COMPANY, INC. (CAGE 1V0E0, UEI GMJPZCJDUG24) recorded $1.69 billion in obligated federal awards across 379 awards over the last 5 years, with an average award value of $4.46 million. The profile is strongly concentrated in construction-related work, indicating a sustained role as a federal contractor in facility and infrastructure delivery.

Agency mix and customer concentration

Obligations are heavily concentrated at the Department of the Navy, which accounts for $1.09 billion across 314 awards, or roughly two-thirds of total obligated value. The Department of the Army is the other principal customer at $596.93 million across 65 awards, showing a two-agency revenue base with limited diversification outside defense organizations.

Industry profile based on NAICS activity

The award mix is dominated by NAICS 236220, Commercial and Institutional Building Construction, which represents $1.64 billion across 375 awards and effectively defines the company’s federal business. NAICS 237310, Highway, Street, and Bridge Construction, is a much smaller secondary category at $47.95 million across 4 awards, suggesting only limited exposure beyond vertical construction.

Annual contract trend over the analysis window

Annual obligations peaked in 2024 at $538.68 million, followed by $435.69 million in 2025, after a lower point in 2023 at $192.32 million. Award counts moved differently from dollar volume, reaching a high of 103 awards in 2023 before declining to 69 in 2024 and 59 in 2025, which implies larger average awards in the most recent two years.

How to interpret this page

This summary is based on FPDS-observed obligations and award counts for the last 5 years, grouped by agency, NAICS, and fiscal year. Totals reflect obligated dollars only and are not adjusted for inflation, scope changes, or contract modifications beyond what is captured in the underlying FPDS data.

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 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
1700 DEPT OF THE NAVY 1,091,674,773.56 1.09 billion 314
2100 DEPT OF THE ARMY 596,929,731.48 596.93 million 65

Insight

Over the last 5 years, HARPER CONSTRUCTION COMPANY, INC. received $1.69 billion across 379 awards, with obligations concentrated in two agencies. The DEPT OF THE NAVY accounted for $1.09 billion and 314 awards, or roughly 65% of total obligations and the clear majority of award actions. The DEPT OF THE ARMY followed with $596.93 million across 65 awards, representing the remaining share of obligations and indicating a two-agency customer base with a strong Navy concentration.

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 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,640,651,501.04 1.64 billion 375
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 47,953,004.00 47.95 million 4

Insight

Over the last 5 years, HARPER CONSTRUCTION COMPANY, INC. (CAGE 1V0E0) received $1.69 billion across 379 awards, with an average award value of $4.46 million. Obligations are highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for $1.64 billion and 375 awards, or nearly all recorded activity in this window. NAICS 237310, Highway, Street, and Bridge Construction, represents a much smaller secondary share at $47.95 million across 4 awards, indicating limited diversification outside the primary construction category.

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

Insight

Over the last 5 years, HARPER CONSTRUCTION COMPANY, INC. (CAGE 1V0E0) obligated $1.69 billion across 379 awards, with an average award value of $4.46 million. Obligations are concentrated in the most recent two years, with 2024 at $538.68 million and 2025 at $435.69 million, together accounting for more than half of the 5-year total. Award volume was highest in 2023 at 103 awards despite lower obligated dollars of $192.32 million, indicating a shift toward smaller average award values in that year.

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.