Federal Contractor

CSI AVIATION SERVICES, INC. Federal Contract Obligations (Last Year)

CSI AVIATION SERVICES, INC. (CAGE 1HTW5, UEI D5BNEHB3UL89) recorded $1.22 billion in obligated federal awards across 43 actions in the last full year.

Most of the vendor's obligation volume came from U.S. Immigration and Customs Enforcement, which accounted for $1.22 billion across 26 awards. Smaller activity was recorded with USTRANSCOM and a limited number of other agencies.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the last full year and may include negative obligations from deobligations or downward adjustments.

CAGE Code
1HTW5
UEI
D5BNEHB3UL89
Total Obligated
1.22 billion
1,222,759,105.47
Award Actions
43
Average Action Value
28,436,258.26

About CSI AVIATION SERVICES, INC. federal contract activity

CSI AVIATION SERVICES, INC. recorded $1.22 billion in FPDS obligations across 43 awards in the last full year, with an average award value of $28.44 million. The vendor’s spend profile is highly concentrated, indicating a small number of large transactions rather than broad-based award activity.

Agency mix and customer concentration

U.S. Immigration and Customs Enforcement accounted for nearly all recorded obligations at $1.221 billion across 26 awards, making it the dominant buyer by a wide margin. USTRANSCOM was a distant second at $2.02 million across 13 awards, while smaller activity from the Federal Prison System/Bureau of Prisons was minimal and the Energy Department and U.S. Coast Guard show negative obligations in the period, which can indicate deobligations or adjustments.

Industry profile based on NAICS activity

The vendor’s obligations were concentrated in NAICS 561599, All Other Travel Arrangement and Reservation Services, which represented $1.221 billion across 28 awards. NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, contributed a much smaller $2.01 million across 15 awards, showing that the vendor’s federal work is primarily tied to travel arrangement services with a secondary air transportation component.

Annual contract trend over the analysis window

All recorded activity in the analysis window falls in 2025, with total obligations of $1.22 billion across 43 awards. Because the data cover a single year, the trend profile reflects annual total activity rather than a multi-year growth pattern, and the negative agency totals suggest some year-end adjustments within the period.

How to interpret this page

This summary uses FPDS obligation data associated with CAGE code 1HTW5 and UEI D5BNEHB3UL89 over the last full year. Totals, award counts, agency mix, NAICS mix, and annual trend values are reported as provided, and negative obligations are retained as recorded in the source 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 = '1HTW5'
        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
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 1,221,069,407.86 1.22 billion 26
9776 USTRANSCOM 2,019,389.06 2.02 million 13
1540 FEDERAL PRISON SYSTEM / BUREAU OF PRISONS 38,775.00 38.77 thousand 1
8900 ENERGY, DEPARTMENT OF -6,380.00 -6.38 thousand 2
7008 U.S. COAST GUARD -362,086.45 -362.09 thousand 1

Insight

CSI AVIATION SERVICES, INC. shows extreme agency concentration in the last full year: U.S. Immigration and Customs Enforcement accounted for $1.221 billion of the firm’s $1.223 billion in obligated value, across 26 of 43 awards. USTRANSCOM was a distant second at $2.02 million across 13 awards, while the remaining agencies each represented negligible volume. Two agencies posted negative obligations—Department of Energy and U.S. Coast Guard—indicating deobligations or adjustments within a very small portion of the vendor’s activity.

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 = '1HTW5'
        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
561599 ALL OTHER TRAVEL ARRANGEMENT AND RESERVATION SERVICES 1,220,746,096.41 1.22 billion 28
481211 NONSCHEDULED CHARTERED PASSENGER AIR TRANSPORTATION 2,013,009.06 2.01 million 15

Insight

CSI AVIATION SERVICES, INC. received $1.22 billion across 43 awards in the last full year, with an average award value of $28.4 million. Obligations were highly concentrated in NAICS 561599, All Other Travel Arrangement and Reservation Services, which accounted for $1.22 billion and 28 awards, or nearly all obligated value. NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, was a minor secondary category at $2.01 million across 15 awards, indicating limited diversification in obligated work.

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 = '1HTW5'
        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 1,222,759,105.47 1.22 billion 43

Insight

In the last full year, CSI AVIATION SERVICES, INC. (CAGE 1HTW5) received $1.22 billion across 43 awards, indicating a highly concentrated award profile. The average award value was $28.4 million, suggesting the obligated amount was distributed across a relatively small number of substantial actions rather than a broad base of smaller awards. With only one annual data point provided for 2025, this section supports a magnitude assessment but does not establish a multi-year trend.

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.