Federal Contractor

LEIDOS, INC. Federal Contract Obligations (Last 5 Years)

LEIDOS, INC. federal procurement profile for the last 5 years, showing 934 award actions and $2.01 billion obligated across civilian and defense agencies.

LEIDOS, INC. (CAGE 6B6E2, UEI JSTDGZNFP4A3) recorded $2,005,678,336.05 in obligated awards over the last 5 years, across 934 actions, for an average action value of $2,147,407.21. Obligations were led by U.S. Customs and Border Protection, followed by the Defense Health Agency, Federal Acquisition Service, Centers for Medicare and Medicaid Services, and the Federal Trade Commission.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations ranged from $345.61 million in 2022 to $455.36 million in 2024, and NAICS 541519 accounted for the largest share of obligations at $1.77 billion.

CAGE Code
6B6E2
UEI
JSTDGZNFP4A3
Total Obligated
2.01 billion
2,005,678,336.05
Award Actions
934
Average Action Value
2,147,407.21

About LEIDOS, INC. federal contract activity

Over the last 5 years, LEIDOS, INC. (CAGE 6B6E2, UEI JSTDGZNFP4A3) received 934 FPDS-recorded awards totaling $2.01 billion, with an average award value of $2.15 million. The award base is concentrated in a relatively small number of high-value actions, indicating a mix of recurring service work and larger task or delivery orders. The obligation profile suggests a major federal contractor with sustained engagement across civilian and defense customers.

Agency mix and customer concentration

U.S. Customs and Border Protection is the largest buyer by obligations at $789.81 million across 127 awards, accounting for more than a third of total obligated dollars in the window. The remaining top agencies are spread across defense, acquisition, health, and oversight missions, led by the Defense Health Agency, Federal Acquisition Service, Centers for Medicare and Medicaid Services, and the Federal Trade Commission. This mix points to broad federal exposure with a strong concentration in mission-support and technical services rather than dependence on a single agency.

Industry profile based on NAICS activity

The vendor’s NAICS profile is dominated by 541519, Other Computer Related Services, which accounts for $1.77 billion across 815 awards and represents the core of its federal revenue mix. Secondary obligations appear in specialized manufacturing and systems categories, including irradiation apparatus manufacturing and search, detection, navigation, guidance, aeronautical, and nautical system and instrument manufacturing. A small negative obligation in 443120 indicates some deobligation or downward adjustment activity within the period, but it does not materially change the overall concentration in IT and technical services.

Annual contract trend over the analysis window

Annual obligations remained above $345 million in every year of the analysis period, with the peak in 2024 at $455.36 million and a strong 2025 total of $406.80 million. Award counts stayed consistently high, ranging from 172 to 206, which suggests steady contract flow even as annual dollar volumes fluctuated. The pattern shows no sharp contraction, but the series does indicate a modest mid-period dip in 2022-2023 followed by renewed strength in 2024-2025.

How to interpret this page

This summary is based on FPDS-observed obligations and award counts for the last 5 years associated with LEIDOS, INC., CAGE 6B6E2, and UEI JSTDGZNFP4A3. Agency, NAICS, and annual trend views are ranked by total obligated dollars; negative obligations are retained as recorded in FPDS and may reflect modifications or deobligations. Totals and averages are rounded for readability and should be interpreted as procurement-recorded obligations, not revenue or booked earnings.

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 = '6B6E2'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
7014 U.S. CUSTOMS AND BORDER PROTECTION 789,811,243.83 789.81 million 127
97DH DEFENSE HEALTH AGENCY (DHA) 232,085,067.36 232.09 million 151
4732 FEDERAL ACQUISITION SERVICE 227,184,877.40 227.18 million 62
7530 CENTERS FOR MEDICARE AND MEDICAID SERVICES 196,296,532.64 196.30 million 27
2900 FEDERAL TRADE COMMISSION 119,022,862.16 119.02 million 129
7529 NATIONAL INSTITUTES OF HEALTH 92,393,022.75 92.39 million 49
1700 DEPT OF THE NAVY 60,692,416.75 60.69 million 42
1549 FEDERAL BUREAU OF INVESTIGATION 56,622,566.77 56.62 million 68
7001 OFFICE OF PROCUREMENT OPERATIONS 44,807,303.44 44.81 million 43
7570 OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION (ASA) 40,705,278.24 40.71 million 21

Insight

Over the last 5 years, LEIDOS, INC. obligated $2.01 billion across 934 awards, with funding concentrated in a few agencies. U.S. Customs and Border Protection is the largest customer at $789.81 million, representing about 39% of total obligated dollars, while the next largest agencies—Defense Health Agency, Federal Acquisition Service, and CMS—each account for roughly $196 million to $232 million. Award activity is more dispersed than dollars: the highest award counts are at Defense Health Agency (151), Federal Trade Commission (129), and CBP (127), indicating a mix of larger-dollar and higher-volume relationships across multiple agencies.

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 = '6B6E2'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
541519 OTHER COMPUTER RELATED SERVICES 1,769,575,856.86 1.77 billion 815
334517 IRRADIATION APPARATUS MANUFACTURING 176,054,027.12 176.05 million 56
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 59,921,413.30 59.92 million 33
334519 OTHER MEASURING AND CONTROLLING DEVICE MANUFACTURING 1,385,127.32 1.39 million 20
443120 COMPUTER AND SOFTWARE STORES -1,258,088.55 -1.26 million 10

Insight

Over the last 5 years, LEIDOS, INC. received 2.01 billion across 934 awards, with obligations heavily concentrated in NAICS 541519, Other Computer Related Services, which accounts for 1.77 billion and 815 awards. The next largest NAICS, 334517, Irradiation Apparatus Manufacturing, is a distant second at 176.05 million across 56 awards, followed by 334511 at 59.92 million across 33 awards. The remaining listed NAICS categories each represent a small share of total obligations, including a negative obligation balance in 443120, indicating limited activity outside the top categories.

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 = '6B6E2'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 406,803,317.52 406.80 million 172
2024 455,356,982.41 455.36 million 176
2023 375,427,002.51 375.43 million 179
2022 345,609,949.56 345.61 million 201
2021 422,481,084.05 422.48 million 206

Insight

LEIDOS, INC. (CAGE 6B6E2) obligated 2.01 billion across 934 awards over the last 5 years, averaging 2.15 million per award. Annual obligations were relatively stable, ranging from 345.61 million in 2022 to 455.36 million in 2024, with a modest decline in 2025 to 406.80 million. Award counts also remained fairly even year to year, peaking at 206 in 2021 and falling to 172 in 2025, indicating broad distribution rather than heavy concentration in a single fiscal year.

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