Federal Contractor

LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last 10 Years)

Federal procurement profile for LOCKHEED MARTIN CORPORATION (CAGE 0L1E5, UEI LXKGXB75YKY6) covering obligations and award activity over the last 10 years.

Over the last 10 years, LOCKHEED MARTIN CORPORATION recorded 1,581 award actions with total obligations of $3,920,460,792.74 and an average action value of $2,479,734.84. Activity is concentrated with the Department of the Air Force, DARPA, and NASA, and most obligations fall under aircraft manufacturing and related R&D NAICS codes.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals, counts, and rankings reflect FPDS award actions in the last 10 years and are based on the provided obligation and classification data.

CAGE Code
0L1E5
UEI
LXKGXB75YKY6
Total Obligated
3.92 billion
3,920,460,792.74
Award Actions
1,581
Average Action Value
2,479,734.84

About LOCKHEED MARTIN CORPORATION federal contract activity

LOCKHEED MARTIN CORPORATION (CAGE 0L1E5, UEI LXKGXB75YKY6) recorded $3.92 billion in obligated federal spending across 1,581 awards over the last 10 years, with an average award value of $2.48 million. The profile indicates a high-volume, large-dollar contracting footprint concentrated in defense and aerospace-related work.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE is the dominant customer, accounting for $2.31 billion across 1,123 awards, or the clear majority of obligated value in the window. DARPA adds another $1.09 billion across 158 awards, while NASA contributes $541.88 million across 175 awards, showing meaningful participation across research, development, and space-related programs. Navy and Army obligations are materially smaller by comparison.

Industry profile based on NAICS activity

The vendor’s obligations are led by NAICS 336411 Aircraft Manufacturing at $2.29 billion and 780 awards, followed by NAICS 541715 R&D in the physical, engineering, and life sciences at $906.05 million and 126 awards. Additional concentration appears in NAICS 336413 Other Aircraft Parts and Auxiliary Equipment Manufacturing and NAICS 541712 R&D in the physical, engineering, and life sciences, indicating a portfolio centered on aerospace production and advanced technical development. Engineering Services is present but comparatively modest at $21.99 million.

Annual contract trend over the analysis window

Recent annual obligations remain elevated, with $508.58 million in 2021, $555.16 million in 2022, and a peak of $597.83 million in 2023. Obligations then declined to $388.65 million in 2024 and $277.29 million in 2025, though activity remains substantial. Award counts stayed relatively high throughout the period, suggesting continued broad contracting engagement even as annual dollars fluctuated.

How to interpret this page

This summary is based on FPDS-observed obligations associated with LOCKHEED MARTIN CORPORATION over the last 10 years, keyed to CAGE 0L1E5 and UEI LXKGXB75YKY6. Agency and NAICS summaries reflect aggregated obligated dollars and award counts within the analysis window; annual trend figures are presented by fiscal year as provided. No additional attribution or contract-level inference is made beyond the supplied 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 = '0L1E5'
        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 2,307,149,421.63 2.31 billion 1,123
97AE DEFENSE ADVANCED RESEARCH PROJECTS AGENCY (DARPA) 1,094,088,921.71 1.09 billion 158
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 541,877,885.69 541.88 million 175
1700 DEPT OF THE NAVY 23,844,373.14 23.84 million 36
2100 DEPT OF THE ARMY 369,874.00 369.87 thousand 2
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -46,869,683.43 -46.87 million 87

Insight

Over the last 10 years, LOCKHEED MARTIN CORPORATION’s obligations are highly concentrated in the Department of the Air Force, which accounts for $2.31 billion across 1,123 awards, or the majority of the vendor’s $3.92 billion total. DARPA is the second-largest obligating agency at $1.09 billion across 158 awards, with NASA third at $541.88 million across 175 awards, indicating a defense- and aerospace-heavy distribution. Smaller obligations to the Department of the Navy and Army are limited, while DCMA shows a negative obligated value of $46.87 million across 87 awards, which offsets a small portion of the overall total.

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 = '0L1E5'
        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 2,293,835,541.08 2.29 billion 780
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 906,053,126.64 906.05 million 126
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 433,604,843.26 433.60 million 383
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 252,393,608.38 252.39 million 177
541330 ENGINEERING SERVICES 21,991,456.81 21.99 million 75
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 14,543,949.40 14.54 million 18
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 369,874.00 369.87 thousand 2
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 1,000.00 1.00 thousand 1
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES -27,691.51 -27.69 thousand 12
541511 CUSTOM COMPUTER PROGRAMMING SERVICES -133,003.54 -133.00 thousand 1

Insight

Over the last 10 years, LOCKHEED MARTIN CORPORATION’s obligations under CAGE 0L1E5 were highly concentrated in aerospace manufacturing and R&D, with NAICS 336411 Aircraft Manufacturing accounting for $2.29 billion across 780 awards and NAICS 541715 R&D in the physical, engineering, and life sciences for $906.05 million across 126 awards. The top three NAICS codes, including 336413 Other Aircraft Parts and Auxiliary Equipment Manufacturing ($433.60 million, 383 awards), represent the dominant share of activity and indicate a strong focus on aircraft production and related technical development. Smaller obligations in engineering, avionics, and engine manufacturing were comparatively limited, while the minor negative values in 541710 and 541511 suggest contract adjustments rather than material work volume.

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 = '0L1E5'
        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 277,285,855.29 277.29 million 95
2024 388,648,627.03 388.65 million 192
2023 597,828,838.69 597.83 million 184
2022 555,162,525.76 555.16 million 189
2021 508,575,762.50 508.58 million 190
2020 472,181,341.20 472.18 million 190
2019 415,416,033.46 415.42 million 167
2018 383,271,178.73 383.27 million 177
2017 319,714,598.68 319.71 million 194
2016 2,376,031.40 2.38 million 3

Insight

Over the last 10 years, LOCKHEED MARTIN CORPORATION (CAGE 0L1E5) received $3.92 billion across 1,581 awards, averaging $2.48 million per award. Obligations are heavily concentrated in the most recent years, led by 2023 at $597.83 million, with 2021–2024 each remaining above $388 million, while 2025 is lower year-to-date at $277.29 million across 95 awards. Earlier activity was materially smaller, including only $2.38 million and 3 awards in 2016, indicating a pronounced expansion in obligated value over the 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.