Federal Contractor

DEPLOYED RESOURCES, LLC Federal Contract Obligations (Last Year)

DEPLOYED RESOURCES, LLC (CAGE 1TP05, UEI GFTGQRJ8F959) recorded $242.97 million in obligated federal awards across 59 actions in the last full year.

DEPLOYED RESOURCES, LLC’s federal award activity in the last full year was concentrated in logistics consulting, with 52 awards under NAICS 541614 totaling $233.60 million. U.S. Customs and Border Protection accounted for the largest share of obligations, followed by the Department of the Army.

Generated at 03/21/2026

Analysis period: Last full year

This summary reflects the last full year and uses the obligated values, award counts, agencies, and NAICS codes provided.

CAGE Code
1TP05
UEI
GFTGQRJ8F959
Total Obligated
242.97 million
242,971,461.95
Award Actions
59
Average Action Value
4,118,160.37

About DEPLOYED RESOURCES, LLC federal contract activity

DEPLOYED RESOURCES, LLC (CAGE 1TP05, UEI GFTGQRJ8F959) recorded 59 FPDS awards totaling $242.97 million in the last full year, with an average award value of $4.12 million. The obligation base is highly concentrated, with a small number of agencies accounting for most of the spend.

Agency mix and customer concentration

U.S. CUSTOMS AND BORDER PROTECTION is the dominant customer, accounting for $126.13 million across 34 awards, or just over half of total obligations. The DEPT OF THE ARMY is the second-largest agency at $99.71 million across 6 awards, while the remaining agencies contribute materially smaller shares, indicating a narrow but active federal customer set.

Industry profile based on NAICS activity

Contracting activity is overwhelmingly concentrated in NAICS 541614, Process, Physical Distribution, and Logistics Consulting Services, which represents $233.60 million across 52 awards. Smaller amounts appear in Security Guards and Patrol Services and Medical Laboratories, suggesting the vendor’s federal work is primarily logistics/consulting-oriented with limited diversification into adjacent service lines.

Annual contract trend over the analysis window

The annual trend shows all recorded obligations in 2025, totaling $242.97 million across 59 awards. With only one year in the analysis window, the data supports a point-in-time profile rather than a multi-year growth assessment.

How to interpret this page

This summary is based on FPDS award obligation data for the last full year and is organized by vendor, agency, NAICS, and annual totals. Obligations reflect total obligated dollars and award counts as provided in the analysis window; no additional sources 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 = '1TP05'
        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
7014 U.S. CUSTOMS AND BORDER PROTECTION 126,131,039.03 126.13 million 34
2100 DEPT OF THE ARMY 99,709,225.68 99.71 million 6
7590 ADMINISTRATION FOR CHILDREN AND FAMILIES 8,835,308.81 8.84 million 3
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 7,466,830.00 7.47 million 4
1406 DEPARTMENTAL OFFICES 1,907,209.00 1.91 million 3
1700 DEPT OF THE NAVY 821,601.23 821.60 thousand 8
7022 FEDERAL EMERGENCY MANAGEMENT AGENCY -1,899,751.80 -1.90 million 1

Insight

DEPLOYED RESOURCES, LLC received $242.97 million across 59 awards in the last full year, with obligations concentrated in two agencies: U.S. Customs and Border Protection ($126.13 million, 34 awards) and the Department of the Army ($99.71 million, 6 awards). These two agencies account for the overwhelming share of obligated dollars, indicating a highly concentrated revenue profile despite a broader set of smaller awards elsewhere. Remaining obligations were distributed across several agencies at materially lower levels, including Administration for Children and Families ($8.84 million) and U.S. Immigration and Customs Enforcement ($7.47 million), with a negative obligation at FEMA (-$1.90 million) reducing net totals.

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 = '1TP05'
        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
541614 PROCESS, PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES 233,597,422.95 233.60 million 52
561612 SECURITY GUARDS AND PATROL SERVICES 7,466,830.00 7.47 million 4
621511 MEDICAL LABORATORIES 1,907,209.00 1.91 million 3

Insight

DEPLOYED RESOURCES, LLC shows a highly concentrated NAICS profile in the last full year, with 541614 accounting for $233.60 million of $242.97 million total obligated, across 52 of 59 awards. The remaining obligations are split between 561612 at $7.47 million across 4 awards and 621511 at $1.91 million across 3 awards, indicating limited diversification beyond the dominant logistics consulting category. Average award value for the period was $4.12 million, consistent with a portfolio driven by a small number of sizeable awards in the primary NAICS.

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 = '1TP05'
        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 242,971,461.95 242.97 million 59

Insight

During the last full year, DEPLOYED RESOURCES, LLC (CAGE 1TP05) received $242.97 million across 59 awards, indicating a moderate concentration of obligations in a single annual period. The average award value was approximately $4.12 million, suggesting the company’s funding base was distributed across multiple mid-sized awards rather than a single dominant action. With only one year represented in the 1-year window, trend direction cannot be assessed beyond the current annual level of activity.

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.