Federal Contractor

RAPID DEPLOYMENT INC Federal Contract Obligations (Last Year)

RAPID DEPLOYMENT INC (CAGE 4JXN5, UEI K1B6MGA23WL3) recorded 9 award actions and $11.30 million in obligations in the last full year, led by work for the Administration for Children and Families.

In the last full year, RAPID DEPLOYMENT INC received $11,304,917.44 across 9 award actions, for an average action value of $1,256,101.93. Most obligations were concentrated in Emergency and Other Relief Services (NAICS 624230) and went primarily to the Administration for Children and Families.

Generated at 03/21/2026

Analysis period: Last full year

Agency, NAICS, and annual totals reflect the provided analysis window and may include rounded values in readable fields.

CAGE Code
4JXN5
UEI
K1B6MGA23WL3
Total Obligated
11.30 million
11,304,917.44
Award Actions
9
Average Action Value
1,256,101.93

About RAPID DEPLOYMENT INC federal contract activity

RAPID DEPLOYMENT INC (CAGE 4JXN5, UEI K1B6MGA23WL3) recorded $11.30 million in obligations across 9 awards in the last full year, for an average award value of $1.26 million. The profile is highly concentrated, with one agency accounting for nearly all obligated dollars.

Agency mix and customer concentration

The Administration for Children and Families dominated vendor spend at $11.00 million across 2 awards, representing the clear center of activity. The Administration for Strategic Preparedness and Response added $304.67 thousand across 5 awards, while U.S. Immigration and Customs Enforcement contributed a nominal $250 and Departmental Offices shows one award with no obligated value.

Industry profile based on NAICS activity

Award activity is overwhelmingly classified under NAICS 624230, Emergency and Other Relief Services, which accounts for $11.30 million across 7 awards. Minor activity appears under NAICS 561612, Security Guards and Patrol Services, and NAICS 561210, Facilities Support Services, each with one award and negligible or zero obligated value.

Annual contract trend over the analysis window

All recorded obligations in the analysis window occurred in 2025, totaling $11.30 million across 9 awards. With only one year in scope, the data support a snapshot of spending concentration rather than a multi-year growth assessment. The pattern indicates a short-term surge or active contract cycle rather than a sustained historical trend.

How to interpret this page

This summary is based on FPDS award records associated with RAPID DEPLOYMENT INC using CAGE 4JXN5 and UEI K1B6MGA23WL3. The analysis window is the last full year, and amounts reflect total obligated dollars aggregated by agency, NAICS, and year from the provided dataset.

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 = '4JXN5'
        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
7590 ADMINISTRATION FOR CHILDREN AND FAMILIES 11,000,000.00 11.00 million 2
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 304,667.44 304.67 thousand 5
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 250.00 250.00 1
1406 DEPARTMENTAL OFFICES 0.00 0.00 1

Insight

During the last full year, RAPID DEPLOYMENT INC’s obligations were highly concentrated at the Administration for Children and Families, which accounted for $11.00 million across 2 awards, or nearly all of the vendor’s $11.30 million total. The remaining obligations were much smaller and dispersed across the Administration for Strategic Preparedness and Response ($304.67 thousand across 5 awards), U.S. Immigration and Customs Enforcement ($250 on 1 award), and Departmental Offices ($0 on 1 award). This pattern indicates a strong reliance on a single agency relationship, with limited activity elsewhere.

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 = '4JXN5'
        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
624230 EMERGENCY AND OTHER RELIEF SERVICES 11,304,667.44 11.30 million 7
561612 SECURITY GUARDS AND PATROL SERVICES 250.00 250.00 1
561210 FACILITIES SUPPORT SERVICES 0.00 0.00 1

Insight

RAPID DEPLOYMENT INC’s obligations in the last full year are highly concentrated in NAICS 624230, Emergency and Other Relief Services, which accounts for 11.30 million of 11.30 million total obligated across 7 of 9 awards. The remaining activity is minimal and dispersed, with 250 obligated under NAICS 561612, Security Guards and Patrol Services, and one award in NAICS 561210, Facilities Support Services, recorded at 0 obligated. This pattern indicates a narrow contracting profile centered almost entirely on relief services.

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 = '4JXN5'
        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 11,304,917.44 11.30 million 9

Insight

Over the last full year, RAPID DEPLOYMENT INC (CAGE 4JXN5) recorded $11.30 million in obligated value across 9 awards, averaging $1.26 million per award. The activity is concentrated in a single annual period, indicating all observed obligations are captured in one year with no year-to-year spread available in this 1-year window. This pattern suggests a relatively small number of moderately sized awards rather than broad, dispersed procurement 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.