Federal Contractor

FEDERAL EXPRESS CORPORATION Federal Contract Obligations (Last Year)

Federal Express Corporation (CAGE 1SB34, UEI KQWXKVLGRZ96) recorded -$2.99 million in federal obligations across 26 award actions in the last full year.

In the last full year, Federal Express Corporation's federal procurement activity was concentrated almost entirely at USTRANSCOM, which accounted for 25 actions and -$3.01 million in obligations. Federal Prison Industries, Inc. appears once in the data with $19.8 thousand obligated; the annual total for 2025 was -$2.99 million.

Generated at 03/21/2026

Analysis period: Last full year

Totals, averages, and agency and NAICS breakdowns reflect the provided FPDS analysis window and may include deobligations, which produce negative obligation values.

CAGE Code
1SB34
UEI
KQWXKVLGRZ96
Total Obligated
-2.99 million
-2,985,215.75
Award Actions
26
Average Action Value
-114,815.99

About FEDERAL EXPRESS CORPORATION federal contract activity

FEDERAL EXPRESS CORPORATION recorded -$2.99 million in obligated value across 26 FPDS-awarded actions during the last full year, for an average award value of -$114,815.99. The negative total indicates net deobligation activity over the period rather than net new obligation. Activity was concentrated in a small number of awards, with one positive obligation partially offset by larger negative adjustments.

Agency mix and customer concentration

Obligations were highly concentrated at USTRANSCOM, which accounted for 25 awards and -$3.01 million of the total. FEDERAL PRISON INDUSTRIES, INC. represented the only other agency in the data, with one award totaling $19.80 thousand. This mix indicates the vendor’s FPDS activity in the period was overwhelmingly tied to one federal customer.

Industry profile based on NAICS activity

The NAICS profile is similarly concentrated in 481211, NONSCHEDULED CHARTERED PASSENGER AIR TRANSPORTATION, which drove -$3.01 million across 25 awards. The only other reported NAICS code was 313210, BROADWOVEN FABRIC MILLS, with a single award of $19.80 thousand. The classification mix suggests the award record is dominated by transportation-related activity, with one outlier code contributing a small positive obligation.

Annual contract trend over the analysis window

All recorded activity falls within 2025, where 26 awards netted to -$2.99 million. The annual figure closely mirrors the overall period totals, indicating no multi-year spread within the provided window. The pattern is consistent with a year marked by significant downward obligation adjustments rather than broad award growth.

How to interpret this page

This summary uses the provided FPDS Query metrics for the last full year and reflects awarded actions associated with CAGE 1SB34 and UEI KQWXKVLGRZ96. Obligated values are reported as provided, including negative amounts, which may indicate deobligations or modifications. Agency, NAICS, and trend sections are based only on the supplied top-level aggregates.

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 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
1542 FEDERAL PRISON INDUSTRIES, INC. 19,800.00 19.80 thousand 1
9776 USTRANSCOM -3,005,015.75 -3.01 million 25

Insight

Over the last full year, FEDERAL EXPRESS CORPORATION’s obligations were highly concentrated at USTRANSCOM, which accounted for 25 of 26 awards and -$3.01 million of the -$2.99 million total obligated. FEDERAL PRISON INDUSTRIES, INC. contributed a single positive obligation of $19.80 thousand, which is immaterial relative to the overall volume. The negative total obligated indicates net deobligations or credits for the period, driven primarily by USTRANSCOM.

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 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
313210 BROADWOVEN FABRIC MILLS 19,800.00 19.80 thousand 1
481211 NONSCHEDULED CHARTERED PASSENGER AIR TRANSPORTATION -3,005,015.75 -3.01 million 25

Insight

During the last full year, FEDERAL EXPRESS CORPORATION’s obligations were highly concentrated in NAICS 481211, NONSCHEDULED CHARTERED PASSENGER AIR TRANSPORTATION, which accounted for 25 of 26 awards and -$3.01 million of the total -$2.99 million obligated. NAICS 313210, BROADWOVEN FABRIC MILLS, was a minor outlier with one award and $19.80 thousand obligated. Overall, the vendor’s NAICS mix is narrowly focused, with obligations dominated by a single transportation-related code and only limited activity outside that category.

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 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,985,215.75 -2.99 million 26

Insight

For the last full year, FEDERAL EXPRESS CORPORATION (CAGE 1SB34) recorded $-2.99 million in total obligated value across 26 awards, for an average award value of approximately $-114.8K. Because the window contains only one annual observation for 2025, no year-over-year trend can be assessed from the provided data. The obligation profile reflects moderate transaction volume with value distributed across multiple awards rather than a single action.

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.