Federal Contractor

CALIFORNIA INSTITUTE OF TECHNOLOGY Federal Contract Obligations (Last Year)

Federal procurement profile for CALIFORNIA INSTITUTE OF TECHNOLOGY (CAGE 23835, UEI YC1YP79BFD19) covering last full year awards and obligations.

In the last full year, CALIFORNIA INSTITUTE OF TECHNOLOGY recorded 1,687 award actions with total obligated funding of $2,099,150,629.01 and an average action value of $1,244,309.79. NASA accounted for nearly all obligated dollars, while award activity was concentrated in NAICS 541715 for research and development in the physical, engineering, and life sciences.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the provided analysis window and may differ slightly across agency and NAICS rollups because of transaction-level adjustments.

CAGE Code
23835
UEI
YC1YP79BFD19
Total Obligated
2.10 billion
2,099,150,629.01
Award Actions
1,687
Average Action Value
1,244,309.79

About CALIFORNIA INSTITUTE OF TECHNOLOGY federal contract activity

CALIFORNIA INSTITUTE OF TECHNOLOGY recorded 1,687 FPDS awards in the last full year, with total obligations of 2.10 billion and an average award value of 1.24 million. The profile is highly concentrated, with NASA accounting for essentially all obligated dollars during the period. The vendor’s UEI is YC1YP79BFD19 and its CAGE code is 23835.

Agency mix and customer concentration

The agency mix is overwhelmingly dominated by the National Aeronautics and Space Administration, which obligated 2.10 billion across 1,686 awards. The National Institutes of Health appears as a single award with zero reported obligated dollars, indicating negligible funding concentration outside NASA. This pattern shows a near-single-agency dependency for federal procurement activity.

Industry profile based on NAICS activity

Award activity is concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences, which accounts for nearly all obligated dollars and 1,651 awards. A much smaller volume is associated with NAICS 541712, with a modest negative obligated amount, and one award appears under NAICS 541380 with zero obligated dollars. The mix is consistent with research-intensive federal work centered on scientific and engineering R&D.

Annual contract trend over the analysis window

The annual trend shows 2.10 billion in obligations and 1,687 awards in 2025, which is the only year in the analysis window. With only one year shown, the data supports a point-in-time view rather than a multi-year trajectory. The 2025 figures reinforce the concentration seen in the agency and NAICS breakdowns.

How to interpret this page

This summary uses FPDS records tied to CAGE code 23835 and UEI YC1YP79BFD19 for the last full year. Obligations, award counts, and averages are drawn directly from the supplied analysis metrics, with agency and NAICS rollups reflecting the reported totals. Negative or zero obligation values are presented as provided in the source data without adjustment.

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 = '23835'
        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
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 2,099,150,629.01 2.10 billion 1,686
7529 NATIONAL INSTITUTES OF HEALTH 0.00 0.00 1

Insight

Over the last full year, CALIFORNIA INSTITUTE OF TECHNOLOGY’s obligations were overwhelmingly concentrated with the National Aeronautics and Space Administration, which accounted for $2.10 billion across 1,686 awards. The remaining activity was minimal: one National Institutes of Health award with no obligated dollars reported. This indicates a highly concentrated agency mix, with NASA driving essentially all of the vendor’s obligated procurement volume in the period.

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 = '23835'
        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) 2,099,284,872.10 2.10 billion 1,651
541380 TESTING LABORATORIES AND SERVICES 0.00 0.00 1
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) -134,243.09 -134.24 thousand 35

Insight

Over the last full year, obligations for CALIFORNIA INSTITUTE OF TECHNOLOGY were highly concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), which accounted for essentially all reported activity at about $2.10 billion across 1,651 awards. A much smaller share of activity appears under NAICS 541712, with 35 awards and a net negative obligation of $134.2 thousand, while NAICS 541380 shows a single award with no obligated dollars. Overall, the vendor’s profile is dominated by R&D obligations, with limited activity outside that core NAICS.

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 = '23835'
        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 2,099,150,629.01 2.10 billion 1,687

Insight

During the last full year, CALIFORNIA INSTITUTE OF TECHNOLOGY (CAGE 23835) recorded $2.10 billion in obligated value across 1,687 awards, for an average award value of $1.24 million. The annual activity is fully concentrated in FY 2025 within the 1-year window, indicating a single-year snapshot rather than a multi-year trend. The award count suggests a relatively broad distribution of obligations across many actions, though the data provided do not support further concentration analysis.

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.