Award Number

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

Award number 70B01C26F00000044 for agency 7014 shows one action in the last 5 years with $1.57 billion obligated.

This page summarizes award number 70B01C26F00000044 for agency ID 7014 over the last 5 years. The record shows one award action with total obligated funding of $1,572,516,500.

Generated at 03/20/2026

Analysis period: Last 5 years

Financial totals are based on the provided analysis window and reflect a single award action.

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 under agency ID 7014 contains one reported action in the last 5 years. Total obligated funding is $1,572,516,500, and the average action value matches the full obligated amount because only one action is present.

How to use this page

Use this page to review the award's reported obligation level and action count within the selected 5-year window. It is useful for identifying the scale of funding tied to this specific award number and for comparing it with other federal award records.

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

Insight

Within the 5-year window, all obligated dollars for PIID 70B01C26F00000044 are concentrated in a single top agency: U.S. Customs and Border Protection. This agency accounts for the full reported obligation of $1.57 billion across one award, indicating complete concentration with no observable distribution across other agencies in the provided data.

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 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
FISHER SAND & GRAVEL CO 85VN2 1,572,516,500.00 1.57 billion 1

Insight

Obligations for PIID 70B01C26F00000044 are fully concentrated with one vendor, FISHER SAND & GRAVEL CO (CAGE 85VN2), accounting for $1.57 billion across 1 award in the 5-year window. This indicates extreme vendor concentration and no observable distribution across multiple suppliers within 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 = '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 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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 1,572,516,500.00 1.57 billion 1

Insight

Obligations are fully concentrated in NAICS 236220, Commercial and Institutional Building Construction, with one award totaling $1.57 billion over the 5-year window. This indicates a single-industry award profile with no diversification across NAICS codes in the provided data. The concentration suggests this award is tied to construction-related requirements and represents the entire observed obligational activity for this section.

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 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
Y1PZ CONSTRUCTION OF OTHER NON-BUILDING FACILITIES 1,572,516,500.00 1.57 billion 1

Insight

The award is fully concentrated in PSC Y1PZ, Construction of Other Non-Building Facilities, with 1 award accounting for $1.57 billion over the 5-year window. This indicates no PSC distribution within the provided data and suggests the award activity is entirely associated with this construction category.

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 5 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 accounted for $1.57 billion in obligated funds across 1 action, indicating complete concentration of obligation in a single year. Within the 5-year window provided, no additional annual activity is shown, so no multi-year trend or distribution can be assessed from the available rows.

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.