Award Number

Award Number 9700 / HQ085124C0001 Federal Contract Action Summary (Last 10 Years)

Award number HQ085124C0001 for agency 9700 shows obligation activity over the last 10 years.

This page summarizes the federal procurement record for award number HQ085124C0001 under agency ID 9700. Over the last 10 years, the award reflects 54 actions and $2.36 billion in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and may change if the underlying award record is updated.

Agency ID
9700
PIID
HQ085124C0001
Type
Award
Total Obligated
2.36 billion
2,361,971,005.15
Actions
54
Average Action Value
43,740,203.80

Overview

The award record for HQ085124C0001 under agency ID 9700 includes 54 award actions in the last 10 years. Total obligated value is 2,361,971,005.15, with an average action value of 43,740,203.8. This view is limited to the stated analysis window and award identifier.

How to use this page

Use this page to review the overall scale of obligation activity tied to award number HQ085124C0001. The figures provide a quick reference for comparing action volume and average action value within the selected 10-year period.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ085124C0001'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
97JC MISSILE DEFENSE AGENCY (MDA) 2,361,971,005.15 2.36 billion 44
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 10

Insight

Obligations for PIID HQ085124C0001 are concentrated almost entirely with the Missile Defense Agency (MDA), which accounts for $2.36 billion across 44 awards over the 10-year window. The Defense Contract Management Agency (DCMA) appears only in award count terms, with 10 awards and no recorded obligated amount. This distribution indicates that obligated funding is heavily centralized under MDA, with DCMA participation limited to non-obligated award activity.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ085124C0001'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
RAYTHEON COMPANY 15090 2,361,971,005.15 2.36 billion 54

Insight

RAYTHEON COMPANY is the sole vendor listed for this award, with $2.36 billion in total obligated value across 54 awards/actions over the 10-year window. This indicates a highly concentrated vendor distribution for PIID HQ085124C0001, with all recorded obligations in the provided rows attributable to one contractor. The concentration suggests a sustained contractual relationship rather than a diversified vendor base.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ085124C0001'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 2,361,971,005.15 2.36 billion 54

Insight

Across the 10-year window for award HQ085124C0001, obligations are entirely concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This category accounts for $2.36 billion across 54 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided results.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ085124C0001'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
1410 GUIDED MISSILES 2,361,971,005.15 2.36 billion 54

Insight

Obligations for PIID HQ085124C0001 are fully concentrated in PSC 1410, Guided Missiles, totaling $2.36 billion across 54 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the 10-year window. The volume of awards suggests repeated obligating activity within a single product category rather than broad category spread.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ085124C0001'
    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 ASC
Year Total Obligated Readable Actions
2024 1,592,440,279.00 1.59 billion 14
2025 769,530,726.15 769.53 million 40

Insight

Obligations for PIID HQ085124C0001 are concentrated in 2024 and 2025, with $1.59 billion obligated across 14 awards in 2024 and $769.53 million across 40 awards in 2025. Although total obligated amount declined in 2025, award count increased materially, indicating a broader distribution of funding across more actions. The two-year pattern suggests substantial annual variability in both obligation volume and award frequency within the 10-year window provided.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.