Federal Contractor

LEIDOS BIOMEDICAL RESEARCH, INC. Federal Contract Obligations (Last Year)

Federal procurement summary for LEIDOS BIOMEDICAL RESEARCH, INC. (CAGE 3LYK6, UEI HV8BH9BPG8Y9) covering last full year obligations and awards.

LEIDOS BIOMEDICAL RESEARCH, INC. recorded $552,024,126.52 in obligated federal awards across 221 actions in the last full year, with an average action value of $2,497,846.72. The activity was awarded entirely through the National Institutes of Health.

Generated at 03/21/2026

Analysis period: Last full year

NAICS 541715 accounted for most obligated dollars, while NAICS 561210 shows a negative obligated total in the reported period.

CAGE Code
3LYK6
UEI
HV8BH9BPG8Y9
Total Obligated
552.02 million
552,024,126.52
Award Actions
221
Average Action Value
2,497,846.72

About LEIDOS BIOMEDICAL RESEARCH, INC. federal contract activity

LEIDOS BIOMEDICAL RESEARCH, INC. (CAGE 3LYK6, UEI HV8BH9BPG8Y9) recorded 552.02 million in obligated dollars across 221 awards in the last full year, for an average award value of about 2.50 million. The profile is highly concentrated, with the entire obligated total flowing through a single agency customer base in the period analyzed.

Agency mix and customer concentration

The National Institutes of Health accounted for 552.02 million across 221 awards, representing 100% of observed obligations in the analysis window. This indicates a fully NIH-centered funding relationship over the last full year, with no other agency appearing in the top-award mix provided.

Industry profile based on NAICS activity

Award activity was dominated by NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), which totaled 563.88 million across 203 awards. NAICS 561210, Facilities Support Services, showed a negative 11.85 million across 18 awards, which offsets part of the R&D total and suggests obligation adjustments, deobligations, or closeout-related changes within the period.

Annual contract trend over the analysis window

The annual trend data show all observed obligations in 2025, with 552.02 million across 221 awards. Because only one year is present, the available view supports a point-in-time snapshot rather than a multi-year growth assessment.

How to interpret this page

This summary is based on FPDS-observed obligations for the last full year and reflects totals, counts, and average award value computed from the supplied data. Agency and NAICS mix are reported from the provided ranked aggregates; negative obligated values are preserved as reported and may reflect deobligations or other contract adjustments.

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 = '3LYK6'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
7529 NATIONAL INSTITUTES OF HEALTH 552,024,126.52 552.02 million 221

Insight

During the last full year, LEIDOS BIOMEDICAL RESEARCH, INC. (CAGE 3LYK6) had all reported obligations concentrated with the National Institutes of Health. NIH accounted for $552.02 million across 221 awards, indicating complete agency concentration with no observed spread across other agencies in this window. The average award value of approximately $2.50 million suggests a high-volume, mid-value award profile within a single agency relationship.

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 = '3LYK6'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 563,875,809.65 563.88 million 203
561210 FACILITIES SUPPORT SERVICES -11,851,683.13 -11.85 million 18

Insight

Over the last full year, LEIDOS BIOMEDICAL RESEARCH, INC. received 221 awards totaling $552.02 million, with an average award value of $2.50 million. Obligations were highly concentrated in NAICS 541715, which accounted for $563.88 million across 203 awards and represented essentially all positive obligation activity in the period. NAICS 561210 shows -$11.85 million across 18 awards, indicating net deobligations or downward adjustments that partially offset the primary R&D funding stream.

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 = '3LYK6'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 552,024,126.52 552.02 million 221

Insight

During the last full year, LEIDOS BIOMEDICAL RESEARCH, INC. (CAGE 3LYK6) received $552.02 million across 221 awards, for an average award value of about $2.50 million. Obligation is entirely concentrated in a single annual period, so no year-over-year trend can be assessed from the provided window. The award volume suggests a relatively distributed funding profile rather than reliance on a small number of extremely large awards.

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