Federal Contractor

NATIONAL AIR CARGO GROUP, INC. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for NATIONAL AIR CARGO GROUP, INC. (CAGE 33ZB6, UEI FCZYF8MGM1K6) covering the last 10 years of award activity.

Over the last 10 years, NATIONAL AIR CARGO GROUP, INC. recorded 3,878 award actions totaling $1,633,976,941.76 in obligated federal spending. Activity is concentrated with USTRANSCOM, which accounts for nearly all obligations, and the largest NAICS category is nonscheduled chartered passenger air transportation.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect readable procurement totals for the stated analysis window and may include multiple award actions under the same vendor profile.

CAGE Code
33ZB6
UEI
FCZYF8MGM1K6
Total Obligated
1.63 billion
1,633,976,941.76
Award Actions
3,878
Average Action Value
421,345.26

About NATIONAL AIR CARGO GROUP, INC. federal contract activity

NATIONAL AIR CARGO GROUP, INC. (CAGE 33ZB6, UEI FCZYF8MGM1K6) received 3,878 FPDS-recorded awards totaling $1.63 billion over the last 10 years, with an average award value of $421,345.26. The obligation base is concentrated in transportation and air logistics contracts, indicating sustained federal demand for air cargo and charter services.

Agency mix and customer concentration

USTRANSCOM accounted for nearly all activity, with $1.63 billion across 3,874 awards, while the AGENCY FOR INTERNATIONAL DEVELOPMENT contributed a much smaller $1.42 million across 4 awards. This agency profile shows a highly concentrated customer base, with federal transportation requirements driving the vendor’s award history.

Industry profile based on NAICS activity

The vendor’s obligations are dominated by NAICS 481211, NONSCHEDULED CHARTERED PASSENGER AIR TRANSPORTATION, at $1.37 billion across 3,244 awards. Additional revenue comes from NAICS 481112, SCHEDULED FREIGHT AIR TRANSPORTATION, NAICS 481212, NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION, and NAICS 488510, FREIGHT TRANSPORTATION ARRANGEMENT, which together indicate a broader but still air-cargo-centered portfolio.

Annual contract trend over the analysis window

Annual obligations were strongest in 2022 at $405.99 million across 693 awards, followed by 2024 at $278.78 million and 2023 at $263.93 million. Activity remained substantial in 2021 and 2025, but the recent annual totals are below the 2022 peak, suggesting variability rather than a steady linear trend.

How to interpret this page

This summary is based on FPDS award records associated with CAGE code 33ZB6 and UEI FCZYF8MGM1K6 within the last 10 years. Totals, counts, and NAICS/agency concentrations reflect obligations as reported in the provided dataset and are not adjusted for inflation or deobligation timing.

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 = '33ZB6'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
9776 USTRANSCOM 1,632,559,944.08 1.63 billion 3,874
7200 AGENCY FOR INTERNATIONAL DEVELOPMENT 1,416,997.68 1.42 million 4

Insight

Over the last 10 years, NATIONAL AIR CARGO GROUP, INC. has 1.63 billion in obligated awards across 3,878 actions, with an average award value of 421,345.26. USTRANSCOM accounts for nearly all activity, with 1.63 billion across 3,874 awards, indicating an extreme concentration of obligations with a single agency. AGENCY FOR INTERNATIONAL DEVELOPMENT represents a very small share of total obligations, at 1.42 million across 4 awards.

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 = '33ZB6'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
481211 NONSCHEDULED CHARTERED PASSENGER AIR TRANSPORTATION 1,365,395,108.04 1.37 billion 3,244
481112 SCHEDULED FREIGHT AIR TRANSPORTATION 128,411,003.73 128.41 million 251
481212 NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION 94,529,868.99 94.53 million 329
488510 FREIGHT TRANSPORTATION ARRANGEMENT 45,640,961.00 45.64 million 54

Insight

Over the last 10 years, NATIONAL AIR CARGO GROUP, INC. (CAGE 33ZB6) has received $1.63 billion across 3,878 awards, with obligations concentrated in NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, which accounts for $1.37 billion and 3,244 awards. The next three NAICS codes are materially smaller in both dollars and volume: 481112 at $128.41 million across 251 awards, 481212 at $94.53 million across 329 awards, and 488510 at $45.64 million across 54 awards. This distribution indicates a strong primary dependence on nonscheduled chartered passenger air transportation, with secondary activity in freight transport and freight arrangement categories.

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 = '33ZB6'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 123,420,146.27 123.42 million 372
2024 278,778,070.37 278.78 million 516
2023 263,933,447.68 263.93 million 484
2022 405,992,801.59 405.99 million 693
2021 192,251,269.54 192.25 million 437
2020 82,370,265.02 82.37 million 326
2019 102,965,191.55 102.97 million 416
2018 125,950,437.30 125.95 million 372
2017 58,315,312.44 58.32 million 262

Insight

Over the last 10 years, NATIONAL AIR CARGO GROUP, INC. has obligated $1.63 billion across 3,878 awards, averaging $421.3K per award. Obligations are concentrated in the most recent four years, with FY2022-FY2025 accounting for the highest annual levels and peaking in FY2022 at $406.0 million and 693 awards. FY2025 is lower to date at $123.4 million and 372 awards, following a decline from FY2022 but remaining above the 2017-2020 range.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.