Geography

North Carolina Federal Contract Obligations (Last Year)

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

Use this page to review federal contract obligations in North Carolina 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
NC
State
North Carolina
Total Obligated
8.60 billion
8,602,580,630.94
Award Actions
209,859
Average Action Value
40,992.19

About North Carolina federal contract activity

This page summarizes last full year of federal contract activity associated with North Carolina. Based on the current FPDS Query dataset, this geography shows 8.60 billion in visible obligations across 209,859 award actions, with an average action value of 40,992.19. 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 North Carolina 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 3.19 billion in obligations, followed by DEPT OF THE NAVY. 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 North Carolina over the last full year. The current ranking is led by ASHBRITT, INC., with 1.50 billion in obligations, followed by BERING STRAITS GLOBAL INNOVATIONS, 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 North Carolina 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 = 'NC'
        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 3,194,032,026.63 3.19 billion 2,757
1700 DEPT OF THE NAVY 1,019,277,696.24 1.02 billion 2,662
97AS DEFENSE LOGISTICS AGENCY 786,769,137.35 786.77 million 137,045
4732 FEDERAL ACQUISITION SERVICE 713,834,219.63 713.83 million 53,220
3600 VETERANS AFFAIRS, DEPARTMENT OF 609,042,235.54 609.04 million 3,323
7008 U.S. COAST GUARD 240,591,739.85 240.59 million 884
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 231,519,875.39 231.52 million 759
7200 AGENCY FOR INTERNATIONAL DEVELOPMENT 229,992,975.00 229.99 million 36
7529 NATIONAL INSTITUTES OF HEALTH 214,265,011.94 214.27 million 745
5700 DEPT OF THE AIR FORCE 150,318,754.59 150.32 million 904

Insight

North Carolina 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 DEPT OF THE NAVY, 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 = 'NC'
        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
ASHBRITT, INC. 00Z46 1,501,982,824.14 1.50 billion 94
BERING STRAITS GLOBAL INNOVATIONS, LLC 7MTD3 258,088,697.38 258.09 million 21
RESEARCH TRIANGLE INSTITUTE 3A730 239,209,975.75 239.21 million 464
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 223,016,117.88 223.02 million 77
CACI NSS, LLC 3HNV7 222,739,537.04 222.74 million 13
JBW GROUP LLC 959V0 219,694,576.55 219.69 million 27
FAMILY HEALTH INTERNATIONAL 3FJZ3 211,582,829.60 211.58 million 28
SDV OFFICE SYSTEMS LLC 65S04 201,665,356.77 201.67 million 724
TMSAB LLC 9GSH0 169,523,768.66 169.52 million 21
SODEXO MANAGEMENT INC. 1EGB9 162,979,252.59 162.98 million 14

Insight

Visible obligations in North Carolina over the last full year appear concentrated among a relatively small set of leading vendors. ASHBRITT, INC. ranks first, followed by BERING STRAITS GLOBAL INNOVATIONS, 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 = 'NC'
        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
562119 OTHER WASTE COLLECTION 1,884,546,541.84 1.88 billion 156
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 529,614,117.16 529.61 million 992
541330 ENGINEERING SERVICES 487,945,520.13 487.95 million 832
541512 COMPUTER SYSTEMS DESIGN SERVICES 465,403,987.71 465.40 million 249
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 401,078,011.01 401.08 million 781
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 290,409,389.29 290.41 million 832
562998 ALL OTHER MISCELLANEOUS WASTE MANAGEMENT SERVICES 271,799,192.76 271.80 million 50
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 236,349,757.70 236.35 million 223
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 203,284,493.41 203.28 million 82
339112 SURGICAL AND MEDICAL INSTRUMENT MANUFACTURING 193,320,748.95 193.32 million 641

Insight

The top-NAICS table highlights the industries with the largest visible obligations in North Carolina 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 = 'NC'
        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
S208 HOUSEKEEPING- LANDSCAPING/GROUNDSKEEPING 2,170,814,838.27 2.17 billion 360
R499 SUPPORT- PROFESSIONAL: OTHER 655,061,828.29 655.06 million 10,472
Y1JZ CONSTRUCTION OF MISCELLANEOUS BUILDINGS 238,070,122.07 238.07 million 197
DA01 IT AND TELECOM - BUSINESS APPLICATION/APPLICATION DEVELOPMENT SUPPORT SERVICES (LABOR) 238,007,905.22 238.01 million 128
6515 MEDICAL AND SURGICAL INSTRUMENTS, EQUIPMENT, AND SUPPLIES 216,496,876.87 216.50 million 3,561
Z2JZ REPAIR OR ALTERATION OF MISCELLANEOUS BUILDINGS 200,706,686.11 200.71 million 446
M1FD OPERATION OF DINING FACILITIES 174,862,448.34 174.86 million 39
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 151,125,879.38 151.13 million 192
Z1KF MAINTENANCE OF DREDGING FACILITIES 135,492,227.84 135.49 million 37
8305 TEXTILE FABRICS 128,486,767.55 128.49 million 153

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in North Carolina 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 = 'NC'
        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 8,602,580,630.94 8.60 billion 209,859

Insight

The annual trend shows how obligations in North Carolina 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.