CACI TECHNOLOGIES, INC. recorded 318 award actions and $270.30 million in obligated value during the analysis window. Most reported dollars were tied to the Department of the Army and NAICS 541715, covering research and development in the physical, engineering, and life sciences.
Federal Contractor
CACI TECHNOLOGIES, INC. Federal Contract Obligations (Last Year)
Federal procurement activity for CACI TECHNOLOGIES, INC. (CAGE 8D014, UEI NGEEG7KP11V4) in the last full year, based on FPDS award data.
Totals may include negative obligations from deobligations or corrections, so agency and NAICS subtotals may not align exactly with the overall total.
About CACI TECHNOLOGIES, INC. federal contract activity
CACI TECHNOLOGIES, INC. recorded 270.30 million in obligated FPDS activity across 318 awards in the last full year, with an average award value of 850,014.75. The vendor’s portfolio indicates sustained federal demand at moderate transaction volume, with a concentration of awards tied to defense-related contracting.
Agency mix and customer concentration
DEPT OF THE ARMY accounted for the vast majority of obligated dollars at 272.73 million across 273 awards, making it the clear primary customer in the period. Smaller negative net obligations were associated with DEFCENSE CONTRACT MANAGEMENT AGENCY (DCMA) and DEPT OF THE NAVY, which suggests either deobligations, corrections, or closeout adjustments rather than new spending in those agencies.
Industry profile based on NAICS activity
The profile is dominated by NAICS 541715, which alone represents 277.22 million across 216 awards and points to research and development in the physical, engineering, and life sciences as the core business area. Secondary activity appears in adjacent technical categories including 541710, 561210, 541511, and 541712, but these categories are either immaterial or net negative, indicating the base of obligations is highly concentrated in one principal NAICS.
Annual contract trend over the analysis window
The annual trend shows 2025 as the reporting year in the analysis window, with 270.30 million obligated across 318 awards. Because only one year is present, the dataset supports a point-in-time assessment rather than a multi-year growth or contraction analysis.
How to interpret this page
This summary is based on FPDS award-obligation records for the vendor matched by CAGE 8D014 and UEI NGEEG7KP11V4 over the last full year. Totals reflect obligated dollars and award counts as provided, and negative values are preserved as reported to reflect offsets, deobligations, or adjustments where present.
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 = '8D014'
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 | 272,733,569.22 | 272.73 million | 273 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -176,253.03 | -176.25 thousand | 2 |
| 1700 | DEPT OF THE NAVY | -2,252,624.63 | -2.25 million | 43 |
Insight
CACI TECHNOLOGIES, INC. received $270.30 million across 318 awards in the last full year, with obligations highly concentrated in the Department of the Army. The Army accounted for $272.73 million and 273 awards, indicating that nearly all positive obligated value is driven by Army activity. The Department of the Navy and DCMA show net negative obligations of $2.25 million and $176.25 thousand, respectively, which partially offset Army funding but do not materially change the overall concentration pattern.
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 = '8D014'
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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 277,222,012.83 | 277.22 million | 216 |
| 541710 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES | 0.00 | 0.00 | 1 |
| 561210 | FACILITIES SUPPORT SERVICES | -25,354.98 | -25.35 thousand | 1 |
| 541511 | CUSTOM COMPUTER PROGRAMMING SERVICES | -299,399.96 | -299.40 thousand | 8 |
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | -1,909,914.87 | -1.91 million | 19 |
| 541330 | ENGINEERING SERVICES | -4,682,651.46 | -4.68 million | 73 |
Insight
CACI TECHNOLOGIES, INC. shows strong concentration in NAICS 541715, which accounts for 216 awards and $277.22 million in obligations during the last full year, essentially matching the vendor’s overall annual obligated value of $270.30 million. The remaining NAICS codes are relatively fragmented and include several categories with negative obligated amounts, notably 541330 at -$4.68 million and 541712 at -$1.91 million, indicating downward adjustments or deobligations in those areas. This pattern suggests the vendor’s recent activity is heavily weighted toward research and development services, with smaller and mixed-value obligations outside that core 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 = '8D014'
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 | 270,304,691.56 | 270.30 million | 318 |
Insight
In the last full year, CACI TECHNOLOGIES, INC. recorded $270.30 million in obligated value across 318 awards, for an average award value of about $850,015. This indicates a relatively broad distribution of obligated dollars across a moderate number of awards, rather than reliance on a small number of high-value actions. Because only one annual period is provided, no year-over-year trend can be assessed from this view.
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.