Federal Contractor

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

Federal procurement profile for SALLYPORT GLOBAL HOLDINGS INC. (CAGE 3X4Q9, UEI CJV9TZ1GS425) covering awards in the last 5 years.

Over the last 5 years, SALLYPORT GLOBAL HOLDINGS INC. received 24 award actions totaling $1.09 billion, with an average action value of $45.52 million. The Department of the Air Force accounted for all reported obligations in this window.

Generated at 03/21/2026

Analysis period: Last 5 years

The spend mix is concentrated in NAICS 561210 Facilities Support Services, while NAICS 561990 shows a negative obligated amount in the source data.

CAGE Code
3X4Q9
UEI
CJV9TZ1GS425
Total Obligated
1.09 billion
1,092,386,717.88
Award Actions
24
Average Action Value
45,516,113.24

About SALLYPORT GLOBAL HOLDINGS INC. federal contract activity

SALLYPORT GLOBAL HOLDINGS INC. recorded 24 FPDS awards totaling $1.09 billion over the last 5 years, with an average award value of about $45.5 million. Activity is concentrated under CAGE 3X4Q9 and UEI CJV9TZ1GS425, indicating a relatively small number of high-value obligations rather than broad transaction volume.

Agency mix and customer concentration

Obligations are fully concentrated in the DEPT OF THE AIR FORCE, which accounts for all $1.09 billion and all 24 awards in the analysis window. This indicates a single-agency customer base and no visible diversification across civilian or other defense agencies in the provided data.

Industry profile based on NAICS activity

The company’s award profile is dominated by NAICS 561210, Facilities Support Services, with 19 awards and $1.10 billion obligated. NAICS 561990, All Other Support Services, shows 5 awards and a negative obligated amount of $11.91 million, suggesting a net downward adjustment within that category rather than incremental growth.

Annual contract trend over the analysis window

Annual obligations were highest in 2021 at $330.69 million, then declined to $96.37 million in 2022 before rebounding to $273.09 million in 2023 and $264.17 million in 2024. Through 2025, obligations stand at $128.06 million across 5 awards, indicating continued but lower-year-to-date activity relative to prior peak years.

How to interpret this page

This summary is based on FPDS obligations associated with CAGE 3X4Q9 and UEI CJV9TZ1GS425 over the last 5 years. Totals, counts, and averages reflect the supplied analysis window and are not adjusted for inflation, outliers, or contract lifecycle context beyond the provided FPDS 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 = '3X4Q9'
        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
5700 DEPT OF THE AIR FORCE 1,092,386,717.88 1.09 billion 24

Insight

Over the last 5 years, SALLYPORT GLOBAL HOLDINGS INC. (CAGE 3X4Q9) shows complete agency concentration in the DEPT OF THE AIR FORCE, which accounts for all 24 awards and the full $1.09 billion in obligated value. This indicates a highly concentrated procurement profile with no observed diversification across other civilian or defense agencies in the period. The average award value of about $45.5 million suggests the activity is driven by relatively large obligations rather than a broad base of smaller transactions.

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 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
561210 FACILITIES SUPPORT SERVICES 1,104,301,206.78 1.10 billion 19
561990 ALL OTHER SUPPORT SERVICES -11,914,488.90 -11.91 million 5

Insight

SALLYPORT GLOBAL HOLDINGS INC. is highly concentrated in NAICS 561210, Facilities Support Services, which accounts for about $1.10 billion across 19 awards over the last 5 years. This activity exceeds the vendor’s reported total obligated amount of $1.09 billion, indicating that the smaller NAICS 561990 line item is negative at -$11.91 million across 5 awards and offsets part of the Facilities Support Services total. Overall, the vendor’s obligational profile is driven almost entirely by NAICS 561210, with limited activity outside that code.

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 5 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

Insight

SALLYPORT GLOBAL HOLDINGS INC. (CAGE 3X4Q9) obligated $1.09 billion across 24 awards over the last 5 years, with an average award value of $45.5 million. Obligations were concentrated in 2021 ($330.69 million) and 2023 ($273.09 million), together accounting for just over half of the 5-year total, while 2022 was the low point at $96.37 million. Annual award counts remained relatively stable at 3 to 6 awards per year, indicating that year-to-year variation in obligations was driven more by award size than by transaction volume.

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.