Federal Contractor

TRIPLE CANOPY, INC. Federal Contract Obligations (Last Year)

FPDS procurement summary for TRIPLE CANOPY, INC. (CAGE 3K6X2, UEI F481BZWYCZA7) covering the last full year of federal obligations.

TRIPLE CANOPY, INC. recorded $324.21 million in obligated federal awards across 288 actions in the last full year, with an average action value of $1.13 million. Most of the spending came through the OFFICE OF PROCUREMENT OPERATIONS and was concentrated in NAICS 561612, Security Guards and Patrol Services.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect obligated dollars and award actions reported in the selected analysis window; agency, NAICS, and annual trend figures are based on the same source data.

CAGE Code
3K6X2
UEI
F481BZWYCZA7
Total Obligated
324.21 million
324,211,536.17
Award Actions
288
Average Action Value
1,125,734.50

About TRIPLE CANOPY, INC. federal contract activity

TRIPLE CANOPY, INC. (CAGE 3K6X2, UEI F481BZWYCZA7) recorded $324.21 million in obligated contract value across 288 awards in the last full year, for an average award value of $1.13 million. The award profile indicates a high-volume vendor with spending concentrated in a limited number of agencies and service lines.

Agency mix and customer concentration

The largest share of obligations came from the OFFICE OF PROCUREMENT OPERATIONS, which accounted for $213.66 million across 248 awards, or roughly two-thirds of total obligated value. STATE, DEPARTMENT OF THE contributed $91.51 million across 25 awards, while DEPT OF THE ARMY and DEPT OF THE AIR FORCE represented materially smaller portions at $16.33 million and $2.71 million, respectively.

Industry profile based on NAICS activity

NAICS 561612, Security Guards and Patrol Services, dominated the portfolio with $291.94 million across 240 awards, indicating that core protective services drove most obligations. Smaller allocations were recorded under NAICS 541611 and 561621, while NAICS 541330 added a single $2.71 million award; NAICS 541618 shows a negative obligation of $200.82 thousand, which reduces net spend in the period.

Annual contract trend over the analysis window

The annual trend shows all recorded obligations in 2025, totaling $324.21 million across 288 awards. With only one year present in the analysis window, the data support a snapshot of current-year activity rather than a multi-year growth assessment.

How to interpret this page

This summary is based on FPDS Query data for the vendor identifiers provided and limited to the last full year. Totals reflect obligated dollars and award counts as reported in the dataset; negative obligations are preserved as reported and included in net totals. No external sources or unprovided attributes 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 = '3K6X2'
        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
7001 OFFICE OF PROCUREMENT OPERATIONS 213,658,612.64 213.66 million 248
1900 STATE, DEPARTMENT OF 91,514,675.68 91.51 million 25
2100 DEPT OF THE ARMY 16,326,666.57 16.33 million 14
5700 DEPT OF THE AIR FORCE 2,711,581.28 2.71 million 1

Insight

TRIPLE CANOPY, INC. received $324.21 million across 288 awards in the last full year, with obligations concentrated in a small number of agencies. The Office of Procurement Operations accounted for $213.66 million across 248 awards, or about two-thirds of total obligations, making it the primary funding source. The Department of State was the second-largest buyer at $91.51 million across 25 awards, while the Department of the Army and Department of the Air Force represented much smaller shares at $16.33 million and $2.71 million, respectively.

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 = '3K6X2'
        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 291,938,334.18 291.94 million 240
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 14,914,395.21 14.91 million 7
561621 SECURITY SYSTEMS SERVICES (EXCEPT LOCKSMITHS) 14,848,044.29 14.85 million 39
541330 ENGINEERING SERVICES 2,711,581.28 2.71 million 1
541618 OTHER MANAGEMENT CONSULTING SERVICES -200,818.79 -200.82 thousand 1

Insight

Over the last full year, TRIPLE CANOPY, INC. obligations were highly concentrated in NAICS 561612, Security Guards and Patrol Services, which accounted for $291.94 million across 240 awards, or about 90% of total obligated dollars. The next largest NAICS categories were 541611, Administrative Management and General Management Consulting Services, and 561621, Security Systems Services, each contributing roughly $14.9 million, indicating a secondary but much smaller mix of support and security-related work. Remaining obligations were limited, with 541330 at $2.71 million and a small negative obligation in 541618, suggesting minimal activity outside the core security services 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 = '3K6X2'
        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 324,211,536.17 324.21 million 288

Insight

During the last full year, TRIPLE CANOPY, INC. (CAGE 3K6X2) recorded $324.21 million in obligated awards across 288 awards, for an average award value of about $1.13 million. The activity is concentrated in a single annual period, so the available window supports a point-in-time view rather than a multi-year trend assessment. The award count suggests a moderately distributed workload, but the obligation volume indicates substantial funding concentration within the year.

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.