Federal Contractor

SYNCOM SPACE SERVICES LLC Federal Contract Obligations (Last 10 Years)

Federal procurement profile for SYNCOM SPACE SERVICES LLC (CAGE 75X31, UEI GM2QNEGF7CA3) showing last-10-year award activity and obligations.

Over the last 10 years, SYNCOM SPACE SERVICES LLC recorded 1,597 award actions totaling $1,559,754,888.62, with an average action value of $976,678.07. Most of the obligations came from NASA and were concentrated in NAICS 561210, Facilities Support Services.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations peaked at $196.82 million in 2021 and remained above $124.78 million in 2024, with 2025 year-to-date obligations at $9.55 million.

CAGE Code
75X31
UEI
GM2QNEGF7CA3
Total Obligated
1.56 billion
1,559,754,888.62
Award Actions
1,597
Average Action Value
976,678.07

About SYNCOM SPACE SERVICES LLC federal contract activity

SYNCOM SPACE SERVICES LLC (CAGE 75X31, UEI GM2QNEGF7CA3) recorded $1.56 billion in FPDS obligations across 1,597 awards in the last 10 years, with an average award value of $976,678.07. The award history is highly concentrated, indicating a large-volume, recurring federal services relationship rather than a broad multi-agency footprint.

Agency mix and customer concentration

NASA accounts for nearly all activity, with $1.5597 billion across 1,592 awards, or essentially the full observed obligation base. The only other recorded customers are the Department of the Navy at $37,350 across 4 awards and the U.S. Coast Guard at $600 across 1 award, which indicates minimal diversification outside NASA.

Industry profile based on NAICS activity

The vendor’s work is overwhelmingly concentrated in NAICS 561210, Facilities Support Services, which represents $1.5597 billion and 1,593 awards. A very small residual amount falls under NAICS 713940, Fitness and Recreational Sports Centers, at $37,350 across 4 awards, suggesting a narrow services profile with one dominant federal facilities-support line.

Annual contract trend over the analysis window

Annual obligations were strongest in 2021 through 2024, ranging from $124.78 million to $196.82 million, before dropping to $9.55 million in 2025 to date. Award counts also peaked in this mid-period, with 206 awards in 2023 and 199 in 2024, compared with 142 in 2025, which may reflect partial-year timing rather than a fully comparable annual total.

How to interpret this page

This analysis uses FPDS obligations associated with SYNCOM SPACE SERVICES LLC over the last 10 years, keyed to CAGE 75X31 and UEI GM2QNEGF7CA3. Totals, award counts, agency distribution, NAICS distribution, and annual trends are based only on the provided FPDS summary data and are not extrapolated beyond the stated period.

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 = '75X31'
        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
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 1,559,716,938.62 1.56 billion 1,592
1700 DEPT OF THE NAVY 37,350.00 37.35 thousand 4
7008 U.S. COAST GUARD 600.00 600.00 1

Insight

Over the last 10 years, SYNCOM SPACE SERVICES LLC’s obligations are overwhelmingly concentrated at NASA, which accounts for nearly all of the vendor’s $1.56 billion in total obligated dollars and 1,592 of 1,597 awards. The remaining activity is minimal and limited to the Department of the Navy ($37.35 thousand across 4 awards) and the U.S. Coast Guard ($600 across 1 award). This pattern indicates a highly concentrated customer base with procurement activity effectively driven by a single agency relationship.

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 = '75X31'
        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
561210 FACILITIES SUPPORT SERVICES 1,559,717,538.62 1.56 billion 1,593
713940 FITNESS AND RECREATIONAL SPORTS CENTERS 37,350.00 37.35 thousand 4

Insight

Over the last 10 years, SYNCOM SPACE SERVICES LLC’s obligations are overwhelmingly concentrated in NAICS 561210, Facilities Support Services, which accounts for $1.56 billion across 1,593 awards. This NAICS represents essentially all observed obligated dollars and award activity for the period, indicating a highly focused contract profile. A minimal share of activity appears in NAICS 713940, Fitness and Recreational Sports Centers, with $37.35 thousand across 4 awards, suggesting only incidental diversification outside the primary service line.

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 = '75X31'
        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 9,548,091.97 9.55 million 142
2024 124,780,250.94 124.78 million 199
2023 165,606,127.68 165.61 million 206
2022 149,772,451.11 149.77 million 139
2021 196,820,105.86 196.82 million 147
2020 196,372,425.90 196.37 million 147
2019 190,069,703.29 190.07 million 170
2018 171,351,986.94 171.35 million 165
2017 177,512,502.60 177.51 million 131
2016 177,921,242.33 177.92 million 151

Insight

Over the last 10 years, SYNCOM SPACE SERVICES LLC recorded $1.56 billion in obligations across 1,597 awards, with an average award value of $976,678. Annual obligations were relatively stable from 2016 through 2023, generally ranging from $149.77 million to $196.82 million, with award counts mostly between 131 and 206. Activity then declined sharply in 2024 to $124.78 million and fell further in 2025 to $9.55 million, indicating a pronounced recent contraction in obligated dollars and award 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.