Award Number

Award Number 7014 / 70B01C26F00000044 Federal Contract Action Summary (Last 10 Years)

Procurement summary for award number 70B01C26F00000044 under agency ID 7014 over the last 10 years.

This page covers one award action for PIID 70B01C26F00000044, with total obligated funding of 1.57 billion across the analysis window. The average action value matches the total because the record contains a single action.

Generated at 03/20/2026

Analysis period: Last 10 years

All dollar figures are shown from the provided readable total of 1.57 billion and exact total of 1572516500.

Agency ID
7014
PIID
70B01C26F00000044
Type
Award
Total Obligated
1.57 billion
1,572,516,500.00
Actions
1
Average Action Value
1,572,516,500.00

Overview

The award record for PIID 70B01C26F00000044 shows a single action in the last 10 years. That action accounts for the full obligated amount of 1,572,516,500, which is also the average action value.

How to use this page

Use this page to review the award-level obligation for agency ID 7014 and track the full amount attached to the identified PIID. Because the record contains only one action, the award total and action average are the same and should be read as one procurement event.

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 = '7014' AND content__award__awardID__awardContractID__PIID = '70B01C26F00000044'
    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
7014 U.S. CUSTOMS AND BORDER PROTECTION 1,572,516,500.00 1.57 billion 1

Insight

Obligations for PIID 70B01C26F00000044 over the 10-year window are fully concentrated in a single agency, U.S. Customs and Border Protection. That agency accounts for 1 award and $1.57 billion in total obligated value, indicating no distribution across other agencies in the provided data. This reflects complete agency-level concentration for the award in the reviewed period.

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 = '7014' AND content__award__awardID__awardContractID__PIID = '70B01C26F00000044'
        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
FISHER SAND & GRAVEL CO 85VN2 1,572,516,500.00 1.57 billion 1

Insight

Over the 10-year window, obligations for PIID 70B01C26F00000044 are fully concentrated with a single vendor, FISHER SAND & GRAVEL CO (CAGE 85VN2). The vendor accounts for $1.57 billion across 1 award, indicating complete award concentration and no observed distribution across additional vendors in the provided data. This level of concentration suggests the contract activity has been narrowly awarded rather than dispersed.

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 = '7014' AND content__award__awardID__awardContractID__PIID = '70B01C26F00000044'
    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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 1,572,516,500.00 1.57 billion 1

Insight

The award is fully concentrated in NAICS 236220, Commercial and Institutional Building Construction, with 1 award totaling $1.57 billion over the 10-year window. This indicates a single-industry procurement profile with no observable NAICS diversification in the provided data. The obligational pattern suggests the award’s activity is entirely attributable to one construction category.

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 = '7014' AND content__award__awardID__awardContractID__PIID = '70B01C26F00000044'
    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
Y1PZ CONSTRUCTION OF OTHER NON-BUILDING FACILITIES 1,572,516,500.00 1.57 billion 1

Insight

Obligations are fully concentrated in PSC Y1PZ, Construction of Other Non-Building Facilities, with $1.57 billion obligated across a single award. This indicates a complete product-service concentration for the selected PIID over the 10-year window, with no observable distribution across other PSCs in the provided data. The pattern suggests the award is narrowly scoped to construction-related work rather than a diversified mix of services or supplies.

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 = '7014' AND content__award__awardID__awardContractID__PIID = '70B01C26F00000044'
    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
2025 1,572,516,500.00 1.57 billion 1

Insight

In 2025, this award accounts for $1.57 billion in obligated funds across a single award action. The obligation is fully concentrated in one year and one record, indicating no multi-year distribution in the provided 10-year window. This pattern suggests a discrete, high-value obligation rather than a dispersed annual funding profile.

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.