Geography

Delaware Federal Contract Obligations (Last Year)

This page summarizes federal contract obligations in Delaware for last full year, including award volume and market trend context.

Use this page to review federal contract obligations in Delaware for last full year. The analysis is based on FPDS award-action data.

Generated at 03/15/2026

Analysis period: Last full year

All figures on this page are based on FPDS award-action obligation data for completed calendar years only within the last full year analysis window.

State Code
DE
State
Delaware
Total Obligated
356.20 million
356,203,609.14
Award Actions
4,505
Average Action Value
79,068.50

About Delaware federal contract activity

This page summarizes last full year of federal contract activity associated with Delaware. Based on the current FPDS Query dataset, this geography shows 356.20 million in visible obligations across 4,505 award actions, with an average action value of 79,068.50. This view is designed to help users quickly understand scale, buyer concentration, contractor concentration, and overall market direction before moving into deeper procurement analysis.

Agency demand and leading federal buyers

Demand in Delaware appears concentrated among a relatively small group of federal buyers over the last full year. The visible agency ranking is led by DEPT OF THE ARMY, with 66.36 million in obligations, followed by VETERANS AFFAIRS, DEPARTMENT OF. This kind of concentration is useful context for business development, bid targeting, and understanding where the strongest federal demand appears to sit.

Vendor concentration and leading contractors

The vendor distribution helps show which contractors capture the largest visible share of obligations in Delaware over the last full year. The current ranking is led by STAMPEDE VENTURES, INC., with 25.24 million in obligations, followed by FDCD II JOINT VENTURE, LLC. This gives users a practical view of the competitive landscape and the visible concentration at the top of the market.

Annual contract trend over the analysis window

The annual trend table provides a year-based view of how visible obligations and award actions have evolved in Delaware across the last full year, from 2025 through 2025. This is useful for spotting periods of expansion, relative stability, or softening activity in this federal market.

How to interpret this page

The tables and trend blocks on this page are generated from FPDS-derived procurement records prepared offline for fast public delivery. They are intended to give a practical summary of geography-level obligations, top buying agencies, leading vendors, major industries, major PSC categories, and visible year-over-year movement within last full year. Users who need deeper filtering, custom SQL, or cross-market comparison can continue the analysis directly inside FPDS Query.

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__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'DE'
        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
2100 DEPT OF THE ARMY 66,363,831.98 66.36 million 182
3600 VETERANS AFFAIRS, DEPARTMENT OF 64,625,170.52 64.63 million 375
5700 DEPT OF THE AIR FORCE 35,952,508.85 35.95 million 406
97AS DEFENSE LOGISTICS AGENCY 25,560,291.97 25.56 million 1,242
97DH DEFENSE HEALTH AGENCY (DHA) 18,549,177.65 18.55 million 74
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 17,081,928.36 17.08 million 141
6800 ENVIRONMENTAL PROTECTION AGENCY 12,370,776.01 12.37 million 34
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) 11,977,355.82 11.98 million 2
1700 DEPT OF THE NAVY 11,028,695.99 11.03 million 109
1900 STATE, DEPARTMENT OF 10,641,838.05 10.64 million 17

Insight

Delaware contract activity over the last full year appears concentrated among a relatively small group of buying agencies. The visible ranking is led by DEPT OF THE ARMY, followed by VETERANS AFFAIRS, DEPARTMENT OF, which suggests that federal demand in this geography is not evenly distributed.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'DE'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Award Actions
STAMPEDE VENTURES, INC. 6WK76 25,239,984.25 25.24 million 15
FDCD II JOINT VENTURE, LLC 9CR45 18,907,938.00 18.91 million 2
SNA INTERNATIONAL LLC 42QU0 15,724,747.42 15.72 million 26
ROSHEL LLC 91L46 15,430,467.45 15.43 million 2
AQUIA NAVA II LLC 9PSE0 14,835,327.81 14.84 million 4
STONEWIN INTERNATIONAL, LLC 8TZL7 14,623,107.09 14.62 million 326
AGILENT TECHNOLOGIES INC 0YSC6 12,807,444.16 12.81 million 103
AGILENT TECHNOLOGIES, INC. 0YSC6 12,759,735.37 12.76 million 138
CAESAR RODNEY SCHOOL DISTRICT 0DNZ1 11,977,355.82 11.98 million 2
CURTIN MARITIME CORP 4ADU6 10,833,195.04 10.83 million 2

Insight

Visible obligations in Delaware over the last full year appear concentrated among a relatively small set of leading vendors. STAMPEDE VENTURES, INC. ranks first, followed by FDCD II JOINT VENTURE, LLC, which helps define the current competitive landscape in this geography.

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__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'DE'
        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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 56,664,912.40 56.66 million 106
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 28,957,627.07 28.96 million 12
541519 OTHER COMPUTER RELATED SERVICES 21,086,416.71 21.09 million 65
334516 ANALYTICAL LABORATORY INSTRUMENT MANUFACTURING 18,221,435.40 18.22 million 248
562910 REMEDIATION SERVICES 15,812,711.15 15.81 million 21
541714 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY (EXCEPT NANOBIOTECHNOLOGY) 15,750,647.42 15.75 million 27
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 15,430,535.57 15.43 million 3
324110 PETROLEUM REFINERIES 14,681,650.69 14.68 million 332
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 14,505,783.82 14.51 million 85
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 13,751,299.75 13.75 million 14

Insight

The top-NAICS table highlights the industries with the largest visible obligations in Delaware over the last full year. This helps show which federal market segments are most prominent in the state.

Top PSC Codes

SELECT
    psc_code,
    psc_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
        anyHeavy(content__award__productOrServiceInformation__productOrServiceCode__description) AS psc_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'DE'
        AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
        AND content__award__productOrServiceInformation__productOrServiceCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY psc_code
)
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Award Actions
Z1KF MAINTENANCE OF DREDGING FACILITIES 28,957,627.07 28.96 million 11
DA01 IT AND TELECOM - BUSINESS APPLICATION/APPLICATION DEVELOPMENT SUPPORT SERVICES (LABOR) 27,277,549.55 27.28 million 16
Y1DB CONSTRUCTION OF LABORATORIES AND CLINICS 25,225,101.99 25.23 million 2
6640 LABORATORY EQUIPMENT AND SUPPLIES 19,067,881.82 19.07 million 111
Y1DA CONSTRUCTION OF HOSPITALS AND INFIRMARIES 18,907,938.00 18.91 million 2
AN12 HEALTH R&D SERVICES; HEALTH CARE SERVICES; APPLIED RESEARCH 16,006,112.28 16.01 million 32
F108 ENVIRONMENTAL SYSTEMS PROTECTION- ENVIRONMENTAL REMEDIATION 15,660,521.11 15.66 million 15
2355 COMBAT, ASSAULT, AND TACTICAL VEHICLES, WHEELED 15,430,467.45 15.43 million 2
Q402 NURSING HOME, LONG-TERM & ADULT DAY CARE SERVICES 12,117,526.06 12.12 million 12
U009 EDUCATION/TRAINING- GENERAL 12,044,555.82 12.04 million 4

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in Delaware over the last full year. This helps show which categories of federal demand are most prominent in the state.

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__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'DE'
        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 356,203,609.14 356.20 million 4,505

Insight

The annual trend shows how obligations in Delaware moved across the last full year, from 2025 through 2025. This helps users judge whether visible contract activity appears stable, rising, or easing over time.

Use FPDS Query for deeper geographic analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper geographic analysis across agencies, vendors, industries, PSC categories, 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.