Federal Contractor

INTER-CON SECURITY SYSTEMS, INC. Federal Contract Obligations (Last Year)

FPDS procurement profile for INTER-CON SECURITY SYSTEMS, INC. (CAGE 7L369, UEI EZ3SMGBR74X6) covering last full-year federal obligations.

In the last full year, INTER-CON SECURITY SYSTEMS, INC. recorded $170,894,297.23 in obligated federal awards across 262 actions, for an average action value of $652,268.31. Most obligations were with the Department of State, followed by the U.S. Marshals Service, GAO, the National Archives and Records Administration, and the National Park Service.

Generated at 03/21/2026

Analysis period: Last full year

Amounts and counts reflect FPDS obligations for the analysis window and are concentrated in NAICS 561612, Security Guards and Patrol Services.

CAGE Code
7L369
UEI
EZ3SMGBR74X6
Total Obligated
170.89 million
170,894,297.23
Award Actions
262
Average Action Value
652,268.31

About INTER-CON SECURITY SYSTEMS, INC. federal contract activity

INTER-CON SECURITY SYSTEMS, INC. (CAGE 7L369, UEI EZ3SMGBR74X6) recorded 170.89 million in obligated federal spending across 262 awards in the last full year, for an average award value of 652,268.31. The volume and dollar value indicate a high-frequency, moderate-dollar contract profile rather than a small number of large awards.

Agency mix and customer concentration

The Department of State accounted for the clear majority of obligations at 153.53 million across 217 awards, making it the dominant customer by both value and count. The remaining activity was distributed across the U.S. Marshals Service, GAO, the National Archives and Records Administration, and the National Park Service, each representing a materially smaller share of spend and indicating a limited but diversified agency footprint outside State.

Industry profile based on NAICS activity

All recorded obligations in the analysis window fall under NAICS 561612, Security Guards and Patrol Services, with 170.89 million across 262 awards. This concentration shows a single-line business profile centered on guard and patrol support, with no evidence in the provided data of meaningful diversification into other NAICS categories.

Annual contract trend over the analysis window

Annual activity for 2025 totals 170.89 million and 262 awards, which serves as the full-period result for the last full year. Because only one year is provided, the dataset supports a point-in-time annual snapshot rather than a directional multi-year trend analysis.

How to interpret this page

This summary is based solely on the provided FPDS Query metrics for the last full year and reflects obligated dollars and award counts associated with the vendor’s CAGE and UEI. Agency, NAICS, and annual sections are derived from the supplied top-customer, top-industry, and yearly aggregate data; no additional records or assumptions were used.

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 = '7L369'
        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
1900 STATE, DEPARTMENT OF 153,528,840.93 153.53 million 217
1544 U.S. MARSHALS SERVICE 8,907,396.35 8.91 million 13
0559 GAO, EXCEPT COMPTROLLER GENERAL 7,253,062.12 7.25 million 3
8800 NATIONAL ARCHIVES AND RECORDS ADMINISTRATION 2,007,640.81 2.01 million 12
1443 NATIONAL PARK SERVICE 612,957.44 612.96 thousand 15
4732 FEDERAL ACQUISITION SERVICE -1,415,600.42 -1.42 million 2

Insight

INTER-CON SECURITY SYSTEMS, INC. shows heavy concentration in the Department of State, which accounts for $153.53 million of $170.89 million in total obligated value and 217 of 262 awards in the last full year. The next largest obligators are the U.S. Marshals Service ($8.91 million, 13 awards) and GAO ($7.25 million, 3 awards), but both are materially smaller than State. Remaining agencies contribute relatively limited volume, with National Archives and Records Administration at $2.01 million and National Park Service at $612.96 thousand, while Federal Acquisition Service reflects net negative obligations of $1.42 million.

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 = '7L369'
        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
561612 SECURITY GUARDS AND PATROL SERVICES 170,894,297.23 170.89 million 262

Insight

INTER-CON SECURITY SYSTEMS, INC. shows complete NAICS concentration in 561612, Security Guards and Patrol Services, which accounts for the full $170.89 million obligated over the last full year. All 262 awards fall under this single NAICS, indicating a highly specialized and non-diversified award profile. The average award value of $652,268.31 suggests a mix of moderate-sized obligations within this sole service 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 = '7L369'
        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 170,894,297.23 170.89 million 262

Insight

In the last full year, INTER-CON SECURITY SYSTEMS, INC. (CAGE 7L369) recorded $170.89 million in obligations across 262 awards, for an average award value of about $652.3K. Because the window contains a single year of data, no year-over-year trend can be assessed from this view. The obligation base is moderately concentrated across a relatively high award count, indicating distribution across multiple actions rather than reliance on a small number of awards.

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.