Geography

Oklahoma Federal Contract Obligations (Last 10 Years)

This page summarizes federal contract obligations in Oklahoma for last 10 years, including award volume and market trend context.

Use this page to review federal contract obligations in Oklahoma for last 10 years. The analysis is based on FPDS award-action data.

Generated at 03/15/2026

Analysis period: Last 10 years

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

State Code
OK
State
Oklahoma
Total Obligated
47.17 billion
47,171,292,104.30
Award Actions
405,433
Average Action Value
116,347.93

About Oklahoma federal contract activity

This page summarizes last 10 years of federal contract activity associated with Oklahoma. Based on the current FPDS Query dataset, this geography shows 47.17 billion in visible obligations across 405,433 award actions, with an average action value of 116,347.93. 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 Oklahoma appears concentrated among a relatively small group of federal buyers over the last 10 years. The visible agency ranking is led by DEPT OF THE AIR FORCE, with 21.94 billion in obligations, followed by DEPT OF THE ARMY. 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 Oklahoma over the last 10 years. The current ranking is led by BOEING COMPANY, THE, with 9.24 billion in obligations, followed by BOEING COMPANY, THE. 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 Oklahoma across the last 10 years, from 2016 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 10 years. 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 = 'OK'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
5700 DEPT OF THE AIR FORCE 21,939,000,434.67 21.94 billion 36,874
2100 DEPT OF THE ARMY 6,295,214,798.26 6.30 billion 25,859
6920 FEDERAL AVIATION ADMINISTRATION 3,829,427,556.17 3.83 billion 20,579
97AS DEFENSE LOGISTICS AGENCY 2,712,480,434.44 2.71 billion 228,395
1700 DEPT OF THE NAVY 2,319,309,540.10 2.32 billion 5,170
7527 INDIAN HEALTH SERVICE 1,330,563,418.17 1.33 billion 25,103
9776 USTRANSCOM 1,132,924,515.70 1.13 billion 866
4732 FEDERAL ACQUISITION SERVICE 986,914,417.78 986.91 million 12,600
3600 VETERANS AFFAIRS, DEPARTMENT OF 953,954,955.45 953.95 million 10,914
7022 FEDERAL EMERGENCY MANAGEMENT AGENCY 541,104,127.84 541.10 million 534

Insight

Oklahoma contract activity over the last 10 years appears concentrated among a relatively small group of buying agencies. The visible ranking is led by DEPT OF THE AIR FORCE, followed by DEPT OF THE ARMY, 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 = 'OK'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
BOEING COMPANY, THE 1N929 9,237,716,762.11 9.24 billion 4,847
BOEING COMPANY, THE 82918 1,808,489,655.52 1.81 billion 950
PATRIOT TEAM 6G2V5 898,029,908.29 898.03 million 524
THE BOEING COMPANY 82918 809,198,736.39 809.20 million 864
THE BOEING COMPANY 0PXV4 796,865,667.78 796.87 million 49
VERTEX AEROSPACE LLC 1P066 633,815,162.78 633.82 million 63
BOEING COMPANY, THE 566,300,873.18 566.30 million 341
HARPER CONSTRUCTION COMPANY, INC. 1V0E0 525,380,779.87 525.38 million 101
THE BOEING COMPANY 1N929 513,841,063.44 513.84 million 427
CDW GOVERNMENT LLC 1KH72 491,468,832.64 491.47 million 997

Insight

Visible obligations in Oklahoma over the last 10 years appear concentrated among a relatively small set of leading vendors. BOEING COMPANY, THE ranks first, followed by BOEING COMPANY, THE, 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 = 'OK'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
336411 AIRCRAFT MANUFACTURING 7,884,883,147.14 7.88 billion 4,927
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 5,731,881,859.36 5.73 billion 21,797
541330 ENGINEERING SERVICES 4,108,752,973.55 4.11 billion 10,132
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 3,864,545,794.97 3.86 billion 6,639
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION 2,658,265,098.03 2.66 billion 2,406
561210 FACILITIES SUPPORT SERVICES 2,422,007,438.44 2.42 billion 8,783
481211 NONSCHEDULED CHARTERED PASSENGER AIR TRANSPORTATION 1,173,402,340.17 1.17 billion 849
541512 COMPUTER SYSTEMS DESIGN SERVICES 1,033,160,612.40 1.03 billion 3,252
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 1,023,026,419.67 1.02 billion 856
541519 OTHER COMPUTER RELATED SERVICES 786,188,501.05 786.19 million 4,331

Insight

The top-NAICS table highlights the industries with the largest visible obligations in Oklahoma over the last 10 years. 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 = 'OK'
        AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
        AND content__award__productOrServiceInformation__productOrServiceCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
J015 MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT AND AIRFRAME STRUCTURAL COMPONENTS 5,753,801,811.04 5.75 billion 3,372
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 5,520,380,084.77 5.52 billion 8,289
1560 AIRFRAME STRUCTURAL COMPONENTS 3,497,327,781.18 3.50 billion 15,686
1510 AIRCRAFT, FIXED WING 1,967,498,221.61 1.97 billion 862
R499 SUPPORT- PROFESSIONAL: OTHER 1,102,522,386.89 1.10 billion 4,795
S216 HOUSEKEEPING- FACILITIES OPERATIONS SUPPORT 1,068,297,897.96 1.07 billion 3,390
J069 MAINT/REPAIR/REBUILD OF EQUIPMENT- TRAINING AIDS AND DEVICES 739,424,090.29 739.42 million 799
V121 TRANSPORTATION/TRAVEL/RELOCATION- TRANSPORTATION: AIR CHARTER 695,038,303.83 695.04 million 446
1680 MISCELLANEOUS AIRCRAFT ACCESSORIES AND COMPONENTS 675,561,780.34 675.56 million 1,453
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 631,470,480.55 631.47 million 633

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in Oklahoma over the last 10 years. 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 = 'OK'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 6,459,012,755.85 6.46 billion 30,491
2024 5,794,587,098.05 5.79 billion 32,045
2023 4,560,041,802.79 4.56 billion 30,798
2022 5,036,489,028.59 5.04 billion 33,963
2021 4,851,016,527.34 4.85 billion 44,649
2020 4,100,147,740.20 4.10 billion 45,097
2019 3,843,920,859.96 3.84 billion 41,511
2018 4,331,773,228.42 4.33 billion 60,728
2017 4,247,558,204.99 4.25 billion 46,294
2016 3,946,744,858.11 3.95 billion 39,857

Insight

The annual trend shows how obligations in Oklahoma moved across the last 10 years, from 2016 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.