Federal Contractor

ELI LILLY AND COMPANY Federal Contract Obligations (Last 10 Years)

Federal procurement profile for ELI LILLY AND COMPANY (CAGE 75602, UEI UHHVNTY54K68) covering obligations, award counts, agencies, and NAICS activity over the last 10 years.

ELI LILLY AND COMPANY recorded $4,666,609,740.80 in obligated federal awards across 23 actions in the last 10 years, with all reported activity under NAICS 325412, Pharmaceutical Preparation Manufacturing. The Department of the Army accounted for nearly all obligations, while the Department of Veterans Affairs recorded one smaller award.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual and agency totals reflect the provided analysis window and may include rounded display values that differ from exact obligation totals.

CAGE Code
75602
UEI
UHHVNTY54K68
Total Obligated
4.67 billion
4,666,609,740.80
Award Actions
23
Average Action Value
202,896,075.68

About ELI LILLY AND COMPANY federal contract activity

ELI LILLY AND COMPANY (CAGE 75602, UEI UHHVNTY54K68) recorded $4.67 billion in obligated federal spend across 23 awards in the last 10 years, with an average award value of about $202.9 million. The profile is highly concentrated, indicating a small number of large obligations rather than broad, fragmented award activity.

Agency mix and customer concentration

Award activity is overwhelmingly concentrated with the DEPT OF THE ARMY, which accounts for 22 of 23 awards and $4.67 billion of total obligated value. VETERANS AFFAIRS, DEPARTMENT OF THE contributed a single award of $229.74 thousand, making the overall agency mix effectively Army-dominated.

Industry profile based on NAICS activity

All recorded obligations fall under NAICS 325412, PHARMACEUTICAL PREPARATION MANUFACTURING, which accounts for the full $4.67 billion and all 23 awards. This indicates that the vendor’s federal procurement footprint in the analysis window is entirely aligned to pharmaceutical manufacturing work.

Annual contract trend over the analysis window

Annual obligations are uneven and peak in 2021 at $2.02 billion across 8 awards, followed by $1.46 billion across 6 awards in 2022 and $1.19 billion across 7 awards in 2020. Activity drops sharply in 2025 to a single $229.74 thousand award, and 2023 shows one award with zero obligated value in the available data, suggesting a material decline after the 2020-2022 surge.

How to interpret this page

This summary is based on FPDS award records associated with ELI LILLY AND COMPANY, matched to CAGE 75602 and UEI UHHVNTY54K68. The analysis window covers the last 10 years and aggregates obligated dollars, award counts, agency totals, NAICS classifications, and annual trends as provided.

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 = '75602'
        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 4,666,380,000.00 4.67 billion 22
3600 VETERANS AFFAIRS, DEPARTMENT OF 229,740.80 229.74 thousand 1

Insight

Over the last 10 years, ELI LILLY AND COMPANY’s obligations are highly concentrated with the DEPT OF THE ARMY, which accounts for $4.666 billion across 22 of 23 awards. The remaining obligation is minimal, with the VETERANS AFFAIRS, DEPARTMENT OF, at $229.74 thousand on 1 award. This distribution indicates a strongly agency-dependent award profile, with average award value across all awards at approximately $202.9 million.

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 = '75602'
        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
325412 PHARMACEUTICAL PREPARATION MANUFACTURING 4,666,609,740.80 4.67 billion 23

Insight

ELI LILLY AND COMPANY’s 10-year federal obligations are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. The vendor received 23 awards totaling $4.67 billion, yielding an average award value of about $202.9 million, which indicates a highly concentrated award profile within a single NAICS category. This distribution suggests the vendor’s federal activity has been consistently aligned to pharmaceutical preparation manufacturing rather than diversified across multiple industry sectors.

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 = '75602'
        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 229,740.80 229.74 thousand 1
2023 0.00 0.00 1
2022 1,463,250,000.00 1.46 billion 6
2021 2,015,630,000.00 2.02 billion 8
2020 1,187,500,000.00 1.19 billion 7

Insight

ELI LILLY AND COMPANY’s obligations under CAGE 75602 are highly concentrated in a short recent span, with $4.67 billion obligated across 23 awards over the last 10 years. Activity peaks in 2021 at $2.02 billion across 8 awards, followed by $1.46 billion in 2022 across 6 awards and $1.19 billion in 2020 across 7 awards, indicating that most obligation value was awarded in these three years. Recent activity is minimal by comparison, with a single award in 2025 totaling $229.74 thousand and a 2023 award recorded at $0, suggesting a sharp decline from the 2020–2022 high point.

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.