Federal Contractor

FEDERAL EXPRESS CORPORATION Federal Contract Obligations (Last 5 Years)

Federal Express Corporation has 3,274 FPDS award actions in the last five years totaling $2.38 billion in obligations, led almost entirely by USTRANSCOM.

Federal Express Corporation (CAGE 1SB34, UEI KQWXKVLGRZ96) recorded $2,379,679,278.26 in obligated federal awards across 3,274 actions during the last five years. Activity is concentrated in USTRANSCOM and in NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, with annual obligations peaking in 2023.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect FPDS-observed obligations within the five-year analysis window and may include small negative adjustments or deobligations.

CAGE Code
1SB34
UEI
KQWXKVLGRZ96
Total Obligated
2.38 billion
2,379,679,278.26
Award Actions
3,274
Average Action Value
726,841.56

About FEDERAL EXPRESS CORPORATION federal contract activity

FEDERAL EXPRESS CORPORATION (CAGE 1SB34, UEI KQWXKVLGRZ96) recorded $2.38 billion in obligations across 3,274 awards over the last 5 years, for an average award value of $726,841.56. The profile is heavily concentrated in transportation-related federal spending, with most obligations flowing through a single agency and a single dominant NAICS category.

Agency mix and customer concentration

USTRANSCOM accounted for $2.38 billion and 3,270 awards, effectively representing the full vendor relationship in the period analyzed. The remaining agencies were immaterial by comparison: FEDERAL PRISON INDUSTRIES, INC. totaled $39.60 thousand across 2 awards, while INDIAN HEALTH SERVICE showed a net negative obligation of $1.63 thousand across 2 awards.

Industry profile based on NAICS activity

NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, dominates the vendor’s federal business with $2.38 billion across 3,269 awards. Minor activity appears in NAICS 313210 at $39.60 thousand, while NAICS 491110 and 481212 show small negative obligations, indicating limited adjustment activity rather than meaningful procurement volume.

Annual contract trend over the analysis window

Annual obligations peaked in 2023 at $843.22 million across 1,039 awards, then declined to $734.45 million in 2022 and $511.84 million in 2021 after the analysis window starts. Spending fell sharply in 2024 to $293.15 million across 608 awards and turned negative in 2025 at -$2.99 million across 26 awards, suggesting significant deobligations or closeout adjustments in the latest year.

How to interpret this page

This summary uses FPDS obligation data for the last 5 years and aggregates awards by vendor identifiers, agency, NAICS, and fiscal year. Obligations may include deobligations or corrections, so negative values reflect net activity rather than standalone spend.

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 = '1SB34'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 2,379,641,309.12 2.38 billion 3,270
1542 FEDERAL PRISON INDUSTRIES, INC. 39,600.00 39.60 thousand 2
7527 INDIAN HEALTH SERVICE -1,630.86 -1.63 thousand 2

Insight

Over the last 5 years, FEDERAL EXPRESS CORPORATION’s obligations are highly concentrated at USTRANSCOM, which accounts for $2.38 billion of $2.38 billion total obligated across 3,270 of 3,274 awards. The remaining activity is minimal and dispersed across two other agencies: FEDERAL PRISON INDUSTRIES, INC. at $39.6 thousand and INDIAN HEALTH SERVICE at -$1.63 thousand. This pattern indicates a very narrow agency base and a procurement profile dominated by a single customer.

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 = '1SB34'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 2,379,772,539.12 2.38 billion 3,269
313210 BROADWOVEN FABRIC MILLS 39,600.00 39.60 thousand 2
491110 POSTAL SERVICE -1,630.86 -1.63 thousand 2
481212 NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION -131,230.00 -131.23 thousand 1

Insight

Over the last 5 years, FEDERAL EXPRESS CORPORATION’s obligations under CAGE 1SB34 are overwhelmingly concentrated in NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, which accounts for nearly all of the reported $2.38 billion and 3,269 of 3,274 awards. The remaining NAICS codes contribute only marginal activity: 313210 totals $39.6 thousand across 2 awards, while 491110 and 481212 show small negative obligations, indicating minimal adjustment activity rather than a meaningful secondary spend pattern. Overall, the vendor’s award profile is highly concentrated in a single NAICS, with limited diversification across other codes.

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 = '1SB34'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 -2,985,215.75 -2.99 million 26
2024 293,148,777.23 293.15 million 608
2023 843,220,043.53 843.22 million 1,039
2022 734,452,402.96 734.45 million 855
2021 511,843,270.29 511.84 million 746

Insight

Over the last 5 years, FEDERAL EXPRESS CORPORATION (CAGE 1SB34) received 2.38 billion across 3,274 awards, averaging 726.8 thousand per award. Obligations were heavily concentrated in 2023, which accounted for 843.2 million and 1,039 awards, the highest annual totals in the period. Annual obligations remained elevated in 2021–2024, then fell sharply in 2025 to -2.99 million across 26 awards, indicating a pronounced year-over-year decline in the current period.

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