Award Number

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

Federal procurement award record for award number W31P4Q24F0165 under agency ID 9700, showing obligations and action history over the last 5 years.

This page summarizes the award number W31P4Q24F0165 for agency ID 9700 across the last 5 years. The record includes 18 award actions with total obligated funding of 2.79 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and exact obligated amount of 2,790,109,221.89 across 18 actions.

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

The award number W31P4Q24F0165 is associated with agency ID 9700 and shows 18 recorded actions in the last 5 years. Total obligated funding for the period 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's obligation level and action count within the defined analysis window. It can support procurement analysis, award-level tracking, and comparison against other records using the same agency ID and time frame.

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 5 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

Within the 5-year window, all identified top-agency obligations for PIID W31P4Q24F0165 are concentrated in the Department of the Army. The Army accounts for $2.79 billion across 18 awards, indicating a highly concentrated award distribution within the available data. No other agency appears in the provided rows, so the observed obligation activity is entirely concentrated at one agency level.

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 5 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

Within the 5-year window for award W31P4Q24F0165, obligations are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 64059). This vendor accounts for 18 awards totaling $2.79 billion, indicating a highly concentrated obligation pattern with no diversification across other vendors in the provided data.

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 5 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 for PIID W31P4Q24F0165 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $2.79 billion across 18 awards over the 5-year window. This indicates a highly focused procurement profile with no observable diversification across other NAICS categories in the provided data. The award activity is concentrated in a defense/aerospace manufacturing segment, suggesting the contract vehicle is tied to a specialized industrial base.

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 5 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

Obligations for PIID W31P4Q24F0165 are fully concentrated in PSC 1410, Guided Missiles, with $2.79 billion across 18 awards over the 5-year window. This indicates a highly focused procurement profile with no observed distribution across other PSCs in the provided data. The award pattern suggests sustained emphasis on a single product/service category rather than diversified obligated spending.

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 5 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 under PIID W31P4Q24F0165 increased from $822.28 million across 3 awards in 2024 to $1.97 billion across 15 awards in 2025. The 2025 activity reflects a broader distribution of funding and a notable increase in award count, indicating a higher concentration of obligations within the same PIID over the period reviewed. This pattern suggests expanded obligation activity rather than a one-time funding 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.