Award Number

Award Number 9700 / FA880615C0001 Federal Contract Action Summary (Last Year)

Award number FA880615C0001 for agency 9700 shows 67 award actions in the last full year and 169.00 million in total obligations.

This award record summarizes procurement activity associated with award number FA880615C0001 for agency ID 9700 over the last full year. The period includes 67 actions with total obligated amount of 168996807.21 and an average action value of 2522340.41.

Generated at 03/20/2026

Analysis period: Last full year

Dollar figures reflect the provided analysis window and may differ by rounding between readable and exact totals.

Agency ID
9700
PIID
FA880615C0001
Type
Award
Total Obligated
169.00 million
168,996,807.21
Actions
67
Average Action Value
2,522,340.41

Overview

Award number FA880615C0001 is the identified procurement record for agency ID 9700 in the last full year. The award shows 67 actions and total obligations of 168996807.21, with an average action value of 2522340.41. The readable total of 169.00 million is a rounded display of the same obligation total.

How to use this page

Use this page to review the award-level activity tied to FA880615C0001 and to compare action frequency with obligated value over the selected period. The figures provide a concise basis for filtering, reporting, or cross-checking this award against other records in agency 9700.

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 = 'FA880615C0001'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 168,996,807.21 169.00 million 67

Insight

Within the 1-year window for award FA880615C0001, all reported obligated dollars are concentrated in DEPT OF THE AIR FORCE (agency 5700), totaling $168.99 million across 67 awards. This indicates a highly concentrated funding pattern with no other top-agency recipients reflected in the provided rows.

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 = 'FA880615C0001'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
RANGE GENERATION NEXT LLC 6WGJ0 168,996,807.21 169.00 million 67

Insight

Within the 1-year window for award FA880615C0001, obligations are fully concentrated with RANGE GENERATION NEXT LLC (CAGE 6WGJ0), which accounts for $169.0 million across 67 awards. This indicates a highly concentrated vendor profile with all reported obligated amounts in this section attributable to a single contractor. The award pattern suggests repeated obligation activity rather than a broad distribution across multiple vendors.

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 = 'FA880615C0001'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 168,996,807.21 169.00 million 67

Insight

Obligations for PIID FA880615C0001 over the past year are fully concentrated in NAICS 541330, Engineering Services, with $169.0 million across 67 awards. This indicates a narrow industry distribution and a strong reliance on engineering services for this award. The repeated award activity suggests the contract’s obligation profile is driven by multiple transactions within a single NAICS category rather than diversification across industries.

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 = 'FA880615C0001'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 168,996,807.21 169.00 million 67

Insight

Over the past year, obligations under PIID FA880615C0001 are fully concentrated in PSC R425, Support- Professional: Engineering/Technical, totaling $169.0 million across 67 awards. This indicates a highly focused spend pattern with no diversification across other PSCs in the provided data. The volume of awards suggests repeated procurement activity within the same service category rather than a broad mix of products or services.

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 = 'FA880615C0001'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 168,996,807.21 169.00 million 67

Insight

For PIID FA880615C0001 over the 1-year window, all recorded obligation activity falls in FY 2025, with $169.0 million obligated across 67 awards. This indicates a concentrated annual pattern within the available period, with activity not distributed across multiple years. The average obligation per award is approximately $2.5 million, suggesting a moderate level of dispersion across the award set.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.