Federal Contractor

BLUE ORIGIN LLC Federal Contract Obligations (Last 10 Years)

BLUE ORIGIN LLC (CAGE 5VWN7, UEI SH2ER4W6LH13) received 99 award actions totaling $1.80 billion over the last 10 years, primarily from NASA.

FPDS records show BLUE ORIGIN LLC with $1,804,338,706.76 in obligated awards across 99 actions in the last 10 years. NASA accounts for most of that activity, while the Department of the Air Force makes up the remaining share.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from other FPDS views due to rounding, timing, or record updates.

CAGE Code
5VWN7
UEI
SH2ER4W6LH13
Total Obligated
1.80 billion
1,804,338,706.76
Award Actions
99
Average Action Value
18,225,643.50

About BLUE ORIGIN LLC federal contract activity

BLUE ORIGIN LLC (CAGE 5VWN7, UEI SH2ER4W6LH13) received $1.80 billion across 99 FPDS awards in the last 10 years, for an average award value of $18.23 million. Obligations are highly concentrated, with nearly all spend tied to a small number of awards and one dominant civilian agency.

Agency mix and customer concentration

NASA accounts for $1.80 billion of obligations and 89 of 99 awards, making it the clear primary customer in this period. The Dept of the Air Force is a much smaller secondary customer at $8.65 million across 10 awards, indicating limited defense activity relative to NASA.

Industry profile based on NAICS activity

The portfolio is dominated by NAICS 541715, which represents $1.72 billion and 69 awards, consistent with research and development work in the physical, engineering, and life sciences. Smaller activity appears in NAICS 481212 at $77.81 million across 20 awards, while 541511 and 336414 are immaterial in value.

Annual contract trend over the analysis window

Obligations accelerated sharply in the most recent years, reaching $828.46 million in 2025 and $508.82 million in 2024 after $426.95 million in 2023. Earlier years in the visible trend were comparatively modest, with $11.13 million in 2022 and $23.68 million in 2021, showing a pronounced upward shift in procurement volume.

How to interpret this page

This summary is based on FPDS award records for the last 10 years and uses obligated dollars, award counts, agency identifiers, and NAICS classifications provided in the query results. Totals, rankings, and trend statements reflect only the supplied dataset and do not infer activity beyond those records.

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 = '5VWN7'
        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
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 1,795,688,278.26 1.80 billion 89
5700 DEPT OF THE AIR FORCE 8,650,428.50 8.65 million 10

Insight

Over the last 10 years, BLUE ORIGIN LLC’s obligations are highly concentrated with the National Aeronautics and Space Administration, which accounts for $1.80 billion across 89 awards, or the vast majority of the vendor’s $1.80 billion total. The Department of the Air Force is a much smaller secondary customer at $8.65 million across 10 awards. This pattern indicates a strong dependence on NASA as the primary awarding agency, with limited diversification across other 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 = '5VWN7'
        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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 1,724,684,300.26 1.72 billion 69
481212 NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION 77,813,633.50 77.81 million 20
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 49,941.00 49.94 thousand 1
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 45,000.00 45.00 thousand 1

Insight

Over the last 10 years, BLUE ORIGIN LLC’s obligations are highly concentrated in NAICS 541715, which accounts for $1.72 billion across 69 awards and represents the clear core of contracting activity. A smaller share is concentrated in NAICS 481212, with $77.81 million across 20 awards, while the remaining listed NAICS codes are immaterial at under $50,000 each. This pattern indicates a narrow procurement profile dominated by research and development work, with limited activity in freight air transport and isolated awards in other 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 = '5VWN7'
        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 828,462,629.65 828.46 million 22
2024 508,815,716.50 508.82 million 29
2023 426,945,008.61 426.95 million 13
2022 11,134,756.00 11.13 million 9
2021 23,681,957.00 23.68 million 7
2020 1,629,903.00 1.63 million 5
2019 2,649,002.00 2.65 million 9
2018 1,019,734.00 1.02 million 5

Insight

BLUE ORIGIN LLC’s obligations are highly concentrated in the most recent three years, with $1.76 billion obligated in FY 2023–FY 2025, or about 97% of the 10-year total of $1.80 billion. FY 2025 is the peak year at $828.46 million across 22 awards, followed by FY 2024 at $508.82 million across 29 awards and FY 2023 at $426.95 million across 13 awards, indicating a sharp escalation in funded activity. Prior years were comparatively limited, with annual obligations remaining below $23.68 million from FY 2018 through FY 2022, reflecting a materially back-loaded award profile.

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.