Geography

Kansas Federal Contract Obligations (Last Year)

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

Use this page to review federal contract obligations in Kansas 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
KS
State
Kansas
Total Obligated
3.06 billion
3,059,773,673.25
Award Actions
30,957
Average Action Value
98,839.47

About Kansas federal contract activity

This page summarizes last full year of federal contract activity associated with Kansas. Based on the current FPDS Query dataset, this geography shows 3.06 billion in visible obligations across 30,957 award actions, with an average action value of 98,839.47. 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 Kansas appears concentrated among a relatively small group of federal buyers over the last full year. The visible agency ranking is led by VETERANS AFFAIRS, DEPARTMENT OF, with 1.35 billion in obligations, followed by DEFENSE LOGISTICS AGENCY. 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 Kansas over the last full year. The current ranking is led by CERNER GOVERNMENT SERVICES, INC., with 1.02 billion in obligations, followed by LEADING TECHNOLOGY COMPOSITES INC. 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 Kansas 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 = 'KS'
        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
3600 VETERANS AFFAIRS, DEPARTMENT OF 1,352,586,793.22 1.35 billion 991
97AS DEFENSE LOGISTICS AGENCY 477,313,881.48 477.31 million 13,195
2100 DEPT OF THE ARMY 434,076,945.63 434.08 million 1,844
6920 FEDERAL AVIATION ADMINISTRATION 247,776,096.43 247.78 million 150
5700 DEPT OF THE AIR FORCE 118,172,877.81 118.17 million 477
12H2 AGRICULTURAL RESEARCH SERVICE 87,638,117.48 87.64 million 205
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 68,663,884.46 68.66 million 15
1700 DEPT OF THE NAVY 64,418,511.48 64.42 million 227
6800 ENVIRONMENTAL PROTECTION AGENCY 42,418,813.09 42.42 million 447
12K2 AGRICULTURAL MARKETING SERVICE 24,992,654.66 24.99 million 68

Insight

Kansas contract activity over the last full year appears concentrated among a relatively small group of buying agencies. The visible ranking is led by VETERANS AFFAIRS, DEPARTMENT OF, followed by DEFENSE LOGISTICS AGENCY, 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 = 'KS'
        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
CERNER GOVERNMENT SERVICES, INC. 7YVP7 1,022,403,237.47 1.02 billion 93
LEADING TECHNOLOGY COMPOSITES INC 1FKY1 150,761,742.83 150.76 million 25
INDRA AIR TRAFFIC, INC. 9G6Y8 141,630,574.81 141.63 million 31
ENVISION XPRESS, INC. 3BLJ3 127,111,474.34 127.11 million 543
GENERAL ELECTRIC COMPANY 07482 123,857,880.99 123.86 million 23
TEXTRON AVIATION INC. 7EK50 111,256,850.23 111.26 million 35
NORTHROP GRUMMAN SYSTEMS CORPORATION 5FVX5 72,007,360.24 72.01 million 13
FEDERAL EXPRESS CORPORATION 01FJ4 66,641,481.93 66.64 million 16
FLOYD CONSTRUCTION CORP 54JR3 46,198,404.42 46.20 million 11
HURLEY JV, LLP 9KJX4 44,865,146.00 44.87 million 2

Insight

Visible obligations in Kansas over the last full year appear concentrated among a relatively small set of leading vendors. CERNER GOVERNMENT SERVICES, INC. ranks first, followed by LEADING TECHNOLOGY COMPOSITES INC, 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 = 'KS'
        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
541512 COMPUTER SYSTEMS DESIGN SERVICES 1,028,432,828.78 1.03 billion 122
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 200,621,078.07 200.62 million 331
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 140,960,467.63 140.96 million 52
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 132,384,141.25 132.38 million 41
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION 132,229,343.93 132.23 million 497
336411 AIRCRAFT MANUFACTURING 123,345,531.80 123.35 million 150
333999 ALL OTHER MISCELLANEOUS GENERAL PURPOSE MACHINERY MANUFACTURING 107,231,766.58 107.23 million 11
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 103,708,553.97 103.71 million 2,089
541519 OTHER COMPUTER RELATED SERVICES 81,472,354.07 81.47 million 128
492110 COURIERS AND EXPRESS DELIVERY SERVICES 67,113,283.54 67.11 million 39

Insight

The top-NAICS table highlights the industries with the largest visible obligations in Kansas 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 = 'KS'
        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
DA01 IT AND TELECOM - BUSINESS APPLICATION/APPLICATION DEVELOPMENT SUPPORT SERVICES (LABOR) 636,741,578.21 636.74 million 90
D318 IT AND TELECOM- INTEGRATED HARDWARE/SOFTWARE/SERVICES SOLUTIONS, PREDOMINANTLY SERVICES 269,706,839.76 269.71 million 16
8470 ARMOR, PERSONAL 142,081,656.41 142.08 million 35
5820 RADIO AND TELEVISION COMMUNICATION EQUIPMENT, EXCEPT AIRBORNE 140,823,811.18 140.82 million 13
3990 MISCELLANEOUS MATERIALS HANDLING EQUIPMENT 124,883,097.27 124.88 million 426
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 121,053,539.54 121.05 million 38
1510 AIRCRAFT, FIXED WING 113,799,150.16 113.80 million 45
7A21 IT AND TELECOM - BUSINESS APPLICATION SOFTWARE (PERPETUAL LICENSE SOFTWARE) 100,618,503.91 100.62 million 42
Y1DA CONSTRUCTION OF HOSPITALS AND INFIRMARIES 97,172,213.26 97.17 million 30
R799 SUPPORT- MANAGEMENT: OTHER 72,188,524.61 72.19 million 45

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in Kansas 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 = 'KS'
        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 3,059,773,673.25 3.06 billion 30,957

Insight

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