Federal Contractor

LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last 10 Years)

Federal procurement profile for LOCKHEED MARTIN CORPORATION (CAGE 16331, UEI KDT2YLB34NT6) covering obligations, award volume, agencies, NAICS codes, and annual trend data over the last 10 years.

LOCKHEED MARTIN CORPORATION recorded $6,601,849,329.77 in total obligations across 11,231 award actions in the last 10 years, for an average action value of $587,823.82. Its largest funding relationships were with the Department of the Army, Department of the Air Force, and Department of the Navy, with activity concentrated in aircraft parts manufacturing, engineering services, and measuring and controlling device manufacturing.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual data shown here highlights the most recent years available in the analysis window and reflects obligated amounts and action counts as reported.

CAGE Code
16331
UEI
KDT2YLB34NT6
Total Obligated
6.60 billion
6,601,849,329.77
Award Actions
11,231
Average Action Value
587,823.82

About LOCKHEED MARTIN CORPORATION federal contract activity

LOCKHEED MARTIN CORPORATION (CAGE 16331, UEI KDT2YLB34NT6) recorded 11,231 FPDS awards with total obligations of 6.60 billion over the last 10 years, for an average award value of 587,823.82. The profile reflects a high-volume, high-dollar federal vendor with spending concentrated in defense-related procurement.

Agency mix and customer concentration

The Department of the Army is the largest customer at 2.70 billion across 2,528 awards, followed by the Department of the Air Force at 2.11 billion and the Department of the Navy at 1.76 billion. Together, those three agencies account for the overwhelming share of obligated dollars, while the Defense Logistics Agency shows a much smaller dollar total but a notably high award count, indicating frequent lower-dollar transactions. The Federal Acquisition Service is present but immaterial by comparison.

Industry profile based on NAICS activity

Work is concentrated in aerospace, engineering, and technical services. The largest NAICS are 336413 Other Aircraft Parts and Auxiliary Equipment Manufacturing at 1.97 billion, 541330 Engineering Services at 1.94 billion, and 334519 Other Measuring and Controlling Device Manufacturing at 1.18 billion, with additional activity in 333318 and 541519. The mix indicates a balance between manufacturing and professional/technical support tied to defense programs and systems.

Annual contract trend over the analysis window

Annual obligations among the reported years peak in 2023 at 879.79 million, with similarly elevated totals in 2021 and 2022 above 813 million each. Awards increase sharply in 2024 and remain high in 2025, but obligated dollars are lower than the 2023 peak, suggesting a larger number of smaller awards or a shift in award structure. Overall, the series shows sustained federal demand rather than a one-year spike.

How to interpret this page

This summary is based on FPDS award records associated with LOCKHEED MARTIN CORPORATION using CAGE 16331 and UEI KDT2YLB34NT6 over the last 10 years. Totals, counts, and averages are derived from the provided overview, agency, NAICS, and annual aggregates; amounts reflect obligated dollars as reported in the source data.

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 = '16331'
        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
2100 DEPT OF THE ARMY 2,695,947,542.27 2.70 billion 2,528
5700 DEPT OF THE AIR FORCE 2,114,998,690.39 2.11 billion 1,011
1700 DEPT OF THE NAVY 1,761,158,141.80 1.76 billion 1,726
97AS DEFENSE LOGISTICS AGENCY 34,773,353.85 34.77 million 5,683
4732 FEDERAL ACQUISITION SERVICE 6,181,270.00 6.18 million 6
1549 FEDERAL BUREAU OF INVESTIGATION 2,144,300.00 2.14 million 2
97AE DEFENSE ADVANCED RESEARCH PROJECTS AGENCY (DARPA) 105,852.92 105.85 thousand 1
7001 OFFICE OF PROCUREMENT OPERATIONS 0.00 0.00 1
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) -34,295.73 -34.30 thousand 2
7008 U.S. COAST GUARD -1,196,603.95 -1.20 million 54

Insight

Over the last 10 years, LOCKHEED MARTIN CORPORATION’s obligations are highly concentrated in three defense agencies: the Department of the Army ($2.70B, 2,528 awards), the Department of the Air Force ($2.11B, 1,011 awards), and the Department of the Navy ($1.76B, 1,726 awards). Together, these agencies account for nearly all of the vendor’s $6.60B in total obligated value across 11,231 awards, indicating a strong concentration in DoD demand. The Defense Logistics Agency shows a much higher award count (5,683) but relatively low obligated value ($34.77M), suggesting smaller-dollar transactional activity compared with the major service branches.

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 = '16331'
        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
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 1,970,807,449.65 1.97 billion 551
541330 ENGINEERING SERVICES 1,936,781,441.78 1.94 billion 2,267
334519 OTHER MEASURING AND CONTROLLING DEVICE MANUFACTURING 1,175,731,305.15 1.18 billion 397
333318 OTHER COMMERCIAL AND SERVICE INDUSTRY MACHINERY MANUFACTURING 438,638,338.09 438.64 million 294
541519 OTHER COMPUTER RELATED SERVICES 216,966,024.90 216.97 million 144
333319 OTHER COMMERCIAL AND SERVICE INDUSTRY MACHINERY MANUFACTURING 165,270,366.67 165.27 million 129
541512 COMPUTER SYSTEMS DESIGN SERVICES 143,624,535.19 143.62 million 90
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 140,908,557.63 140.91 million 175
333248 ALL OTHER INDUSTRIAL MACHINERY MANUFACTURING 94,845,352.00 94.85 million 6
611512 FLIGHT TRAINING 78,159,913.55 78.16 million 360

Insight

Over the last 10 years, LOCKHEED MARTIN CORPORATION’s obligations are concentrated in aerospace manufacturing and engineering-related NAICS codes. The top three NAICS—336413, 541330, and 334519—account for about $5.08 billion combined, or roughly 77% of the firm’s $6.60 billion in total obligated value, indicating a heavy reliance on a narrow set of core defense and technical activities. Award volume is more dispersed: 541330 has the highest count at 2,267 awards, while 336413 and 334519 carry substantially larger average values, reflecting a mix of many smaller service awards and fewer high-dollar manufacturing awards.

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 = '16331'
        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 451,700,356.70 451.70 million 2,285
2024 629,001,896.30 629.00 million 2,951
2023 879,790,324.12 879.79 million 2,242
2022 813,401,838.76 813.40 million 692
2021 813,240,316.01 813.24 million 645
2020 721,221,302.86 721.22 million 696
2019 930,774,025.26 930.77 million 711
2018 740,526,448.37 740.53 million 519
2017 618,595,107.39 618.60 million 484
2016 3,597,714.00 3.60 million 6

Insight

Over the last 10 years, LOCKHEED MARTIN CORPORATION (CAGE 16331) received 6.60 billion across 11,231 awards, with activity concentrated in the most recent years. Obligations were elevated from 2017 through 2025, peaking in 2019 at 930.77 million, then remaining above 700 million annually through 2023 before declining to 629.00 million in 2024 and 451.70 million in 2025. Award volume was highest in 2024 and 2025, while earlier years generally had fewer awards at higher annual obligation levels, indicating a shift toward more numerous but smaller awards in the latest period.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.