Federal Contractor

CACI, INC. - FEDERAL Federal Contract Obligations (Last Year)

Federal procurement summary for CACI, INC. - FEDERAL (CAGE 1QU78, UEI N3PBJAVNKF61) covering the last full year of awards and obligations.

In the last full year, CACI, INC. - FEDERAL recorded 1,233 award actions totaling 3.26 billion in obligations, with an average action value of 2.64 million. Most obligated dollars came from the Department of the Air Force, the Federal Acquisition Service, and the Department of the Navy.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect FPDS-observed obligations for the analysis window and are grouped by agency and NAICS based on the provided records.

CAGE Code
1QU78
UEI
N3PBJAVNKF61
Total Obligated
3.26 billion
3,258,838,219.35
Award Actions
1,233
Average Action Value
2,643,015.58

About CACI, INC. - FEDERAL federal contract activity

CACI, INC. - FEDERAL (CAGE 1QU78, UEI N3PBJAVNKF61) recorded 3.26 billion in obligations across 1,233 awards in the last full year, for an average award value of 2.64 million. The profile indicates a high-volume federal vendor with substantial activity concentrated in defense and acquisition channels.

Agency mix and customer concentration

The largest obligations came from the Department of the Air Force at 950.68 million across 372 awards, followed closely by the Federal Acquisition Service at 935.03 million across 147 awards. The Department of the Navy added 440.96 million over 431 awards, while U.S. Customs and Border Protection and DCSA contributed 312.77 million and 180.67 million, respectively, indicating a mix of defense, civilian acquisition, and security-focused demand.

Industry profile based on NAICS activity

The vendor’s spending is led by NAICS 541512, Computer Systems Design Services, at 1.38 billion across 283 awards, making it the primary work category. Additional volume is spread across Engineering Services (541330), R&D in physical/engineering/life sciences (541715), Investigation and Personal Background Check Services (561611), and Wired Telecommunications Carriers (517111), suggesting a portfolio centered on IT systems, engineering support, technical research, and cleared services.

Annual contract trend over the analysis window

The annual trend for 2025 shows 3.26 billion in obligations across 1,233 awards, which serves as the full-year baseline for this analysis window. Because only one annual datapoint is provided, the dataset supports level assessment rather than a multi-year growth or volatility analysis.

How to interpret this page

This summary uses FPDS obligations data for the last full year and groups results by awarding agency and NAICS code. Totals reflect obligated dollars, award counts reflect the number of recorded awards in the dataset, and average award value is calculated from total obligations divided by award count.

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 = '1QU78'
        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
5700 DEPT OF THE AIR FORCE 950,683,907.74 950.68 million 372
4732 FEDERAL ACQUISITION SERVICE 935,025,760.45 935.03 million 147
1700 DEPT OF THE NAVY 440,962,143.85 440.96 million 431
7014 U.S. CUSTOMS AND BORDER PROTECTION 312,774,899.50 312.77 million 40
97AV DEFENSE COUNTERINTELLIGENCE AND SECURITY AGENCY (DCSA) 180,672,649.29 180.67 million 7
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 131,406,642.54 131.41 million 33
2100 DEPT OF THE ARMY 80,850,639.55 80.85 million 37
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 46,402,000.00 46.40 million 11
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 46,319,922.48 46.32 million 25
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 40,162,381.22 40.16 million 17

Insight

CACI, INC. - FEDERAL received 3.26 billion across 1,233 awards in the last full year, with obligations concentrated in a small set of agencies. The Department of the Air Force and the Federal Acquisition Service together account for 1.89 billion, or about 58% of total obligated dollars, indicating a strong reliance on two primary customers. The Department of the Navy is the next largest source by award volume with 431 awards, while other agencies contribute materially smaller amounts, suggesting a broad but highly skewed distribution of obligations.

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 = '1QU78'
        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
541512 COMPUTER SYSTEMS DESIGN SERVICES 1,379,921,067.06 1.38 billion 283
541330 ENGINEERING SERVICES 687,338,216.74 687.34 million 477
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 421,916,821.18 421.92 million 238
561611 INVESTIGATION AND PERSONAL BACKGROUND CHECK SERVICES 215,952,701.55 215.95 million 24
517111 WIRED TELECOMMUNICATIONS CARRIERS 208,426,604.00 208.43 million 8
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 152,654,512.59 152.65 million 40
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 98,855,794.97 98.86 million 32
541519 OTHER COMPUTER RELATED SERVICES 62,273,440.56 62.27 million 50
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 19,489,138.87 19.49 million 32
811219 OTHER ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE 17,711,004.34 17.71 million 11

Insight

Over the last full year, CACI, INC. - FEDERAL (CAGE 1QU78) obligated 3.26 billion across 1,233 awards, averaging 2.64 million per award. Obligations are concentrated in NAICS 541512, Computer Systems Design Services, at 1.38 billion, followed by 541330 Engineering Services at 687.34 million and 541715 R&D in the physical, engineering, and life sciences at 421.92 million. These three NAICS codes account for the majority of reported obligations, while several other categories receive materially smaller shares, indicating a diversified but software/engineering-heavy portfolio.

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 = '1QU78'
        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 3,258,838,219.35 3.26 billion 1,233

Insight

Over the last full year, CACI, INC. - FEDERAL (CAGE 1QU78) recorded $3.26 billion in obligated awards across 1,233 awards, for an average award value of about $2.64 million. The volume of awards indicates a broad distribution of obligations rather than reliance on a small number of actions, although the data provided covers only a single year and does not support a multi-year trend assessment.

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.