Award Number

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

Federal procurement analysis for award number 70B01C26F00000044 under agency ID 7014 during the last full year.

This page summarizes obligation activity for award number 70B01C26F00000044 for agency ID 7014 over the last full year. The award shows 1 action and total obligated amounts of 1.57 billion, with an average action value matching the full obligation.

Generated at 03/20/2026

Analysis period: Last full year

Figures are based on the provided analysis window and award-level totals only; no additional contract details are inferred.

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

Award number 70B01C26F00000044 is associated with agency ID 7014 in the last full year analysis window. The award recorded a single action and total obligated amounts of 1,572,516,500, which is also the average action value because only one action is present. This page is limited to the award-level figures provided.

How to use this page

Use this page to review basic award-level obligation activity for PIID 70B01C26F00000044. The figures support quick comparison of total obligated value, action count, and average action value within the selected time window. No broader performance, vendor, or task-level interpretation is included in the provided data.

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

Insight

Within the 1-year window, obligations for PIID 70B01C26F00000044 are fully concentrated in a single agency: U.S. Customs and Border Protection. The agency accounts for 1 award and $1.57 billion in total obligated amount, indicating no observed distribution across other agencies in the provided data. This concentration suggests the award activity is entirely attributable to one agency within the reporting 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 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
FISHER SAND & GRAVEL CO 85VN2 1,572,516,500.00 1.57 billion 1

Insight

Within the 1-year window for award 70B01C26F00000044 under agency 7014, obligations are fully concentrated with a single vendor. FISHER SAND & GRAVEL CO (CAGE 85VN2) accounts for $1.57 billion across 1 award, indicating a highly concentrated vendor distribution with no other vendors represented 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 = '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 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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 1,572,516,500.00 1.57 billion 1

Insight

Obligations for PIID 70B01C26F00000044 are fully concentrated in NAICS 236220, Commercial and Institutional Building Construction, with $1.57 billion obligated across a single award in the past year. This indicates no observable NAICS diversification within the reported window. The award activity is therefore highly concentrated in 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 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
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 across a single award. This indicates a highly concentrated award profile for the selected 1-year window, with no diversification across PSCs in the provided data. The absence of additional PSCs suggests the award activity is driven entirely by one 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 1 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 the 1-year window, FY2025 accounts for the full reported obligation under PIID 70B01C26F00000044, with $1.57 billion obligated across 1 award. This indicates a highly concentrated annual profile, with all observed activity captured in a single fiscal year and no distribution across multiple years in the provided data. The absence of additional yearly rows limits assessment of trend direction beyond this concentrated FY2025 obligation.

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.