Federal Contractor

PARAGON SYSTEMS, INC Federal Contract Obligations (Last 10 Years)

Federal procurement profile for PARAGON SYSTEMS, INC (CAGE 69298, UEI RG1VD6RNMXB5) covering $4.99 billion in obligations and 8,272 award actions over the last 10 years.

PARAGON SYSTEMS, INC's federal award history is dominated by security guard and patrol services, with 8,126 NAICS-linked actions totaling $4.78 billion. The largest customer is the Office of Procurement Operations, which accounts for $3.63 billion across 5,984 awards, followed by the U.S. Marshals Service at $509.42 million across 1,635 awards.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the last 10 years of readable FPDS obligations and may not include records with missing or non-readable values.

CAGE Code
69298
UEI
RG1VD6RNMXB5
Total Obligated
4.99 billion
4,989,642,771.19
Award Actions
8,272
Average Action Value
603,196.65

About PARAGON SYSTEMS, INC federal contract activity

PARAGON SYSTEMS, INC (CAGE 69298, UEI RG1VD6RNMXB5) has received 8,272 FPDS-recorded awards over the last 10 years, totaling $4.99 billion in obligated value. The average award value is $603,196.65, indicating a high-volume contract profile with meaningful dollar concentration in recurring service awards.

Agency mix and customer concentration

Obligations are heavily concentrated at the Office of Procurement Operations, which accounts for $3.63 billion across 5,984 awards, or the clear majority of identified spending. The next-largest customer is the U.S. Marshals Service at $509.42 million across 1,635 awards, while the remaining top agencies are materially smaller and suggest supplemental demand across justice, health, and preparedness organizations.

Industry profile based on NAICS activity

The vendor’s work is overwhelmingly associated with NAICS 561612, Security Guards and Patrol Services, which represents $4.78 billion and 8,126 awards. NAICS 561621, Security Systems Services, is a distant second at $209.05 million, while all other NAICS codes are immaterial, indicating a business primarily centered on guard-force and related security service contracts.

Annual contract trend over the analysis window

Annual obligations remain elevated across the period shown, with $695.61 million in 2021, $469.43 million in 2022, $590.89 million in 2023, $717.12 million in 2024, and $500.65 million in 2025. Award counts follow a similar pattern of high transaction volume, peaking at 1,186 awards in 2021 and remaining in the 631-899 range thereafter, which is consistent with a steady recompete and task-order-driven security services portfolio.

How to interpret this page

This summary is based on FPDS award records for the last 10 years and reflects obligated amounts, award counts, and reported NAICS and agency distributions tied to the vendor identifiers provided. Figures are rounded for readability; percentages and concentration assessments are derived from the supplied totals without introducing external sources or unstated assumptions.

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 = '69298'
        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
7001 OFFICE OF PROCUREMENT OPERATIONS 3,626,263,176.39 3.63 billion 5,984
1544 U.S. MARSHALS SERVICE 509,417,577.34 509.42 million 1,635
1501 OFFICES, BOARDS AND DIVISIONS 224,718,404.15 224.72 million 131
7505 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 183,552,342.18 183.55 million 33
7529 NATIONAL INSTITUTES OF HEALTH 175,663,702.48 175.66 million 36
7014 U.S. CUSTOMS AND BORDER PROTECTION 116,859,430.49 116.86 million 104
7570 OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION (ASA) 44,002,453.66 44.00 million 24
5700 DEPT OF THE AIR FORCE 22,867,562.58 22.87 million 30
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 17,619,651.37 17.62 million 5
7022 FEDERAL EMERGENCY MANAGEMENT AGENCY 14,054,585.29 14.05 million 21

Insight

PARAGON SYSTEMS, INC’s obligations over the last 10 years are highly concentrated: the OFFICE OF PROCUREMENT OPERATIONS accounts for $3.63 billion of the $4.99 billion total, or roughly 73% of all obligated dollars, across 5,984 awards. The U.S. MARSHALS SERVICE is a distant second at $509.42 million and 1,635 awards, bringing the top two agencies to about 83% of total obligations. The remaining agencies each represent materially smaller shares, with obligations dropping below $225 million after the top three and below $50 million for several agencies, indicating a broad but heavily skewed agency distribution.

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 = '69298'
        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
561612 SECURITY GUARDS AND PATROL SERVICES 4,780,256,270.43 4.78 billion 8,126
561621 SECURITY SYSTEMS SERVICES (EXCEPT LOCKSMITHS) 209,045,687.92 209.05 million 144
532490 OTHER COMMERCIAL AND INDUSTRIAL MACHINERY AND EQUIPMENT RENTAL AND LEASING 340,312.84 340.31 thousand 1
541330 ENGINEERING SERVICES 500.00 500.00 1

Insight

Over the last 10 years, PARAGON SYSTEMS, INC’s obligations are highly concentrated in NAICS 561612, Security Guards and Patrol Services, which accounts for 4.78 billion of 4.99 billion total obligated and 8,126 of 8,272 awards. NAICS 561621, Security Systems Services (except Locksmiths), is a distant second at 209.05 million across 144 awards, indicating a secondary but materially smaller activity stream. The remaining NAICS categories are immaterial in dollar value and volume, with only isolated awards in NAICS 532490 and 541330.

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 = '69298'
        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 500,647,693.59 500.65 million 631
2024 717,118,148.74 717.12 million 679
2023 590,893,470.72 590.89 million 692
2022 469,425,536.01 469.43 million 899
2021 695,607,807.50 695.61 million 1,186
2020 681,548,379.54 681.55 million 1,087
2019 476,442,630.19 476.44 million 1,072
2018 499,184,233.47 499.18 million 1,124
2017 345,826,617.99 345.83 million 852
2016 12,948,253.44 12.95 million 50

Insight

Over the last 10 years, PARAGON SYSTEMS, INC obligated 4.99 billion across 8,272 awards, averaging 603.2 thousand per award, indicating a high-volume, mid-dollar contracting profile. Obligations were heavily concentrated in the most recent years, with 2024 (717.1 million) and 2021 (695.6 million) representing the annual peaks; 2020, 2022, 2023, and 2025 also remained near or above 469 million. Activity was materially lower in 2016 and 2017, then expanded sharply from 2018 onward, with award counts generally highest between 2018 and 2021 before moderating in 2022–2025.

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.