Award Number

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

Federal procurement summary for award number FA824018C7218 under agency ID 9700, covering the last 10 years of recorded action data.

This page summarizes award number FA824018C7218 for agency ID 9700 over the last 10 years. The award shows 384 actions and total obligations of $2.61 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Obligation totals are shown as both readable and exact values, and the analysis window is limited to the last 10 years.

Agency ID
9700
PIID
FA824018C7218
Type
Award
Total Obligated
2.61 billion
2,612,002,837.46
Actions
384
Average Action Value
6,802,090.72

Overview

Award number FA824018C7218 is associated with agency ID 9700 and reflects 384 recorded actions in the last 10 years. Total obligated value is $2,612,002,837.46, with an average action value of $6,802,090.72.

How to use this page

Use this page to review obligation scale and action volume for award FA824018C7218 within the selected time window. The figures support basic procurement analysis across total obligated value, action count, and average action value.

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 = 'FA824018C7218'
    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
5700 DEPT OF THE AIR FORCE 2,612,002,837.46 2.61 billion 384

Insight

Obligations are concentrated entirely with DEPT OF THE AIR FORCE (Agency ID 5700), which accounts for the full $2.61 billion associated with this award over the 10-year window. The 384 awards attributed to this agency indicate a substantial, sustained transactional relationship rather than a broad distribution across multiple agencies. This pattern suggests the award activity is highly centralized within a single agency customer.

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 = 'FA824018C7218'
        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
JT4, LLC 7DS14 2,612,002,837.46 2.61 billion 384

Insight

JT4, LLC is the sole top vendor for this award over the 10-year window, with $2.61 billion obligated across 384 actions. This indicates a highly concentrated award profile, with all identified obligation in this section flowing to a single vendor. The volume of awards and total obligations suggest sustained reliance on this contractor rather than a broadly distributed 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 = 'FA824018C7218'
    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
541330 ENGINEERING SERVICES 2,612,002,837.46 2.61 billion 384

Insight

For award PIID FA824018C7218 over the 10-year window, obligations are fully concentrated in NAICS 541330, Engineering Services. This NAICS accounts for $2.61 billion across 384 awards, indicating a sustained and highly focused procurement profile rather than a diversified mix of industrial categories.

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 = 'FA824018C7218'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 2,612,002,837.46 2.61 billion 384

Insight

Over the 10-year window for award FA824018C7218, obligations are fully concentrated in PSC R425, Support- Professional: Engineering/Technical. This PSC accounts for $2.61 billion across 384 awards, indicating a sustained and highly concentrated reliance on engineering and technical support services. The volume of awards alongside the obligated value suggests repeated procurement activity within a single service category rather than diversified PSC 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 = 'FA824018C7218'
    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
2018 212,309,025.27 212.31 million 22
2019 278,907,254.52 278.91 million 38
2020 333,785,791.16 333.79 million 43
2021 303,818,601.38 303.82 million 54
2022 307,629,616.78 307.63 million 48
2023 443,111,526.39 443.11 million 55
2024 341,509,274.22 341.51 million 52
2025 390,931,747.74 390.93 million 72

Insight

Obligations for PIID FA824018C7218 increased from $212.31 million across 22 awards in 2018 to a peak of $443.11 million across 55 awards in 2023, indicating a generally upward trajectory with year-to-year volatility. After the 2023 high, obligated amounts declined to $341.51 million in 2024 before rising again to $390.93 million in 2025. Award counts also trended upward overall, reaching 72 in 2025, which suggests growth in transaction volume alongside relatively concentrated annual obligation levels.

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.