Federal Contractor

SALLYPORT GLOBAL HOLDINGS INC. Federal Contract Obligations (Last 10 Years)

SALLYPORT GLOBAL HOLDINGS INC. (CAGE 3X4Q9, UEI CJV9TZ1GS425) recorded $2.38 billion in federal obligations across 57 actions in the last 10 years, led by the Department of the Air Force.

Most of the vendor’s federal spending is concentrated in Department of the Air Force awards, with a small additional obligation from the Department of State. The portfolio is dominated by NAICS 561990 All Other Support Services and NAICS 561210 Facilities Support Services, with annual obligations ranging from $96.37 million to $330.69 million in the recent years shown.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect the provided 10-year analysis window and are based on obligated amounts, award counts, and agency and NAICS summaries supplied for this page.

CAGE Code
3X4Q9
UEI
CJV9TZ1GS425
Total Obligated
2.38 billion
2,376,210,798.15
Award Actions
57
Average Action Value
41,687,908.73

About SALLYPORT GLOBAL HOLDINGS INC. federal contract activity

SALLYPORT GLOBAL HOLDINGS INC. (CAGE 3X4Q9, UEI CJV9TZ1GS425) recorded $2.38 billion in FPDS-obligated awards across 57 actions over the last 10 years, for an average award value of $41.69 million. The award profile is highly concentrated, with one agency accounting for nearly all obligated dollars.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE dominates the vendor’s federal business, representing $2.376 billion across 56 awards. The only other recorded agency in the window is the STATE, DEPARTMENT OF, with a single $11,200 award, indicating an exceptionally narrow customer base.

Industry profile based on NAICS activity

Award activity is concentrated in two service categories: NAICS 561990, All Other Support Services, at $1.27 billion across 37 awards, and NAICS 561210, Facilities Support Services, at $1.10 billion across 19 awards. A single $11,200 award appears under NAICS 423860, which is immaterial relative to the vendor’s overall federal spend.

Annual contract trend over the analysis window

Annual obligations remain volatile but consistently material, with the selected recent years ranging from $96.37 million in 2022 to $330.69 million in 2021. More recent years show continued large obligations, including $273.09 million in 2023, $264.17 million in 2024, and $128.06 million in 2025, though award counts have stayed low at 3 to 6 per year in the reported period.

How to interpret this page

This summary is based on FPDS award data associated with CAGE 3X4Q9 and UEI CJV9TZ1GS425 over the last 10 years. Totals reflect obligated dollars and award counts from the provided dataset; figures are rounded in narrative form and should be interpreted within FPDS reporting constraints.

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 = '3X4Q9'
        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
5700 DEPT OF THE AIR FORCE 2,376,199,598.15 2.38 billion 56
1900 STATE, DEPARTMENT OF 11,200.00 11.20 thousand 1

Insight

Over the last 10 years, SALLYPORT GLOBAL HOLDINGS INC. received 2.38 billion in obligations across 57 awards, with an average award value of 41.7 million. Funding is overwhelmingly concentrated in the DEPT OF THE AIR FORCE, which accounts for 2.38 billion across 56 awards, or effectively all obligated dollars in this period. The only other recorded agency is the DEPARTMENT OF STATE, with a single award totaling 11.2 thousand, indicating minimal agency diversification.

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 = '3X4Q9'
        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
561990 ALL OTHER SUPPORT SERVICES 1,271,898,391.37 1.27 billion 37
561210 FACILITIES SUPPORT SERVICES 1,104,301,206.78 1.10 billion 19
423860 TRANSPORTATION EQUIPMENT AND SUPPLIES (EXCEPT MOTOR VEHICLE) MERCHANT WHOLESALERS 11,200.00 11.20 thousand 1

Insight

Over the last 10 years, SALLYPORT GLOBAL HOLDINGS INC. (CAGE 3X4Q9) received $2.38 billion across 57 awards, with obligations heavily concentrated in two NAICS codes. NAICS 561990, All Other Support Services, accounts for $1.27 billion across 37 awards, and NAICS 561210, Facilities Support Services, accounts for $1.10 billion across 19 awards; together they represent essentially all obligated value. NAICS 423860 is immaterial by comparison, with $11.2 thousand across 1 award, indicating a highly focused contracting profile.

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 = '3X4Q9'
        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 128,063,945.24 128.06 million 5
2024 264,174,419.79 264.17 million 5
2023 273,091,171.00 273.09 million 3
2022 96,370,971.10 96.37 million 5
2021 330,686,210.75 330.69 million 6
2020 248,011,999.27 248.01 million 4
2019 534,574,799.00 534.57 million 11
2018 261,902,744.00 261.90 million 9
2017 239,334,538.00 239.33 million 9

Insight

Over the last 10 years, obligations for SALLYPORT GLOBAL HOLDINGS INC. (CAGE 3X4Q9) total $2.38 billion across 57 awards, averaging about $41.7 million per award. Funding is unevenly distributed, with a clear peak in 2019 at $534.6 million and a secondary high in 2021 at $330.7 million, while 2022 dropped to $96.4 million before rebounding to $273.1 million in 2023 and easing to $264.2 million in 2024. Award volume is also concentrated in a few years, led by 2019 with 11 awards, indicating that both obligation value and award count have varied materially rather than following a steady annual pattern.

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.