In the last full year, RQ CONSTRUCTION, LLC recorded $581,425,535.77 in obligated federal awards across 129 actions, for an average action value of $4,507,174.69. The vendor’s activity was concentrated in the Department of the Navy and in NAICS 236220, Commercial and Institutional Building Construction.
Federal Contractor
RQ CONSTRUCTION, LLC Federal Contract Obligations (Last Year)
RQ CONSTRUCTION, LLC (CAGE 68JG2, UEI NE61LN4FM1A5) received 129 award actions totaling $581.43 million in the last full year, with most obligations from the Department of the Navy.
This page reflects the last full year of readable FPDS obligations and summarizes award activity by agency, NAICS code, and annual trend.
About RQ CONSTRUCTION, LLC federal contract activity
RQ CONSTRUCTION, LLC (CAGE 68JG2, UEI NE61LN4FM1A5) recorded 581.43 million in obligated obligations across 129 awards in the last full year, with an average award value of 4.51 million. The profile is heavily concentrated in a relatively small number of awards, indicating meaningful contract scale and limited dispersion across transactions. This pattern suggests the vendor is operating as a material construction supplier/service provider in the federal market.
Agency mix and customer concentration
The DEPT OF THE NAVY accounted for the overwhelming share of obligations, at 549.34 million across 120 awards, making it the primary customer by both value and count. The U.S. COAST GUARD was a distant second at 32.01 million across 4 awards, while the DEPT OF THE ARMY contributed only 71.81 thousand across 5 awards. Overall, the agency mix is highly concentrated in Navy spending, with limited diversification across civilian or other defense buyers.
Industry profile based on NAICS activity
Obligations were concentrated almost entirely in NAICS 236220, Commercial and Institutional Building Construction, which represented 581.35 million across 124 awards. A much smaller amount, 71.81 thousand across 5 awards, was recorded under NAICS 327320, Ready-Mix Concrete Manufacturing. This mix indicates the vendor's federal activity is primarily aligned to building construction rather than materials manufacturing.
Annual contract trend over the analysis window
The annual trend shows all recorded activity in 2025, with 581.43 million obligated across 129 awards. With only one year in the window, the data does not support a multi-year growth or decline assessment. The available period instead indicates a concentrated level of current-year obligation volume without evidence of temporal variability.
How to interpret this page
This summary is based on FPDS obligation data for the last full year and uses total obligated dollars, award counts, and award-weighted concentration by agency and NAICS. Agency and NAICS shares are interpreted from the provided totals only, without assuming task order structure, contract vehicle type, or performance status. No external sources or unprovided attributes 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 = '68JG2'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 549,343,730.27 | 549.34 million | 120 |
| 7008 | U.S. COAST GUARD | 32,010,000.00 | 32.01 million | 4 |
| 2100 | DEPT OF THE ARMY | 71,805.50 | 71.81 thousand | 5 |
Insight
RQ CONSTRUCTION, LLC’s last full year obligations were highly concentrated in the DEPT OF THE NAVY, which accounted for $549.34 million across 120 awards, or the vast majority of the vendor’s $581.43 million total. U.S. COAST GUARD was a distant second at $32.01 million across 4 awards, while DEPT OF THE ARMY accounted for only $71.81 thousand across 5 awards. This distribution indicates heavy reliance on a single agency relationship, with limited diversification across the remaining top 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 = '68JG2'
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 | 581,353,730.27 | 581.35 million | 124 |
| 327320 | READY-MIX CONCRETE MANUFACTURING | 71,805.50 | 71.81 thousand | 5 |
Insight
RQ CONSTRUCTION, LLC’s obligations in the last full year were highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounted for $581.35 million across 124 awards, or essentially all reported obligated value. A much smaller share of activity fell under NAICS 327320, Ready-Mix Concrete Manufacturing, at $71.81 thousand across 5 awards. The distribution indicates a clear primary procurement focus in commercial and institutional construction, with only minimal related manufacturing activity.
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 = '68JG2'
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 | 581,425,535.77 | 581.43 million | 129 |
Insight
RQ CONSTRUCTION, LLC (CAGE 68JG2) recorded 581.43 million in obligated dollars across 129 awards in the last full year, with an average award value of 4.51 million. Because the 1-year window contains only a single annual observation for 2025, no year-over-year trend can be assessed from this view. The obligation profile indicates a sizable award base with moderate distribution across multiple actions rather than dependence on a single award.
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.