Award Number

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

Award number W31P4Q24F0165 for agency ID 9700 shows 18 recorded actions over the last 10 years with $2.79 billion obligated.

This page summarizes federal procurement activity for award number W31P4Q24F0165 under agency ID 9700. Over the last 10 years, the award shows 18 actions and total obligated funding of $2,790,109,221.89.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated values are shown as provided for the selected 10-year analysis window and may reflect cumulative action-level amounts.

Agency ID
9700
PIID
W31P4Q24F0165
Type
Award
Total Obligated
2.79 billion
2,790,109,221.89
Actions
18
Average Action Value
155,006,067.88

Overview

Award number W31P4Q24F0165 is associated with agency ID 9700 and records 18 award actions in the last 10 years. The total obligated amount is $2,790,109,221.89, with an average action value of $155,006,067.88.

How to use this page

Use this page to review the award-level obligation pattern across the selected analysis window. The figures support a quick check of total funding, action volume, and average action value for this award.

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 = 'W31P4Q24F0165'
    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
2100 DEPT OF THE ARMY 2,790,109,221.89 2.79 billion 18

Insight

For this award over the 10-year window, obligations are concentrated entirely in one agency: the Department of the Army. The Army accounts for $2.79 billion across 18 awards, indicating a highly focused obligation pattern rather than a broad distribution across agencies. This concentration suggests the award’s funding and execution have been predominantly Army-centric.

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 = 'W31P4Q24F0165'
        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
LOCKHEED MARTIN CORPORATION 64059 2,790,109,221.89 2.79 billion 18

Insight

LOCKHEED MARTIN CORPORATION (CAGE 64059) is the sole top vendor recorded for this award over the 10-year window, receiving $2.79 billion across 18 obligations. This indicates very high vendor concentration, with all reported obligations in this section attributable to a single contractor. The distribution suggests the award’s funded activity has been consistently concentrated with one vendor rather than spread across multiple suppliers.

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 = 'W31P4Q24F0165'
    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,790,109,221.89 2.79 billion 18

Insight

Obligations under PIID W31P4Q24F0165 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $2.79 billion obligated across 18 awards over the 10-year window. This indicates a highly concentrated award profile with no visible diversification across other NAICS codes in the provided data.

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 = 'W31P4Q24F0165'
    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,790,109,221.89 2.79 billion 18

Insight

Across the 10-year window for award W31P4Q24F0165, obligations are fully concentrated in PSC 1410, Guided Missiles, with $2.79 billion obligated across 18 awards. This indicates a highly focused procurement profile with no visible diversification across other product service codes in the provided data. The award pattern suggests sustained investment in a single mission area rather than broad procurement distribution.

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 = 'W31P4Q24F0165'
    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 822,278,796.36 822.28 million 3
2025 1,967,830,425.53 1.97 billion 15

Insight

Obligations for PIID W31P4Q24F0165 are concentrated in 2025, which accounts for 1.97 billion across 15 awards, compared with 822.28 million across 3 awards in 2024. The year-over-year pattern indicates a substantial increase in both obligated value and award count, suggesting a broader and more active obligation profile in 2025. This concentration in the later year may indicate a ramp-up in funding execution rather than a single isolated obligation event.

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.