Federal Contractor

TECHFLOW, INC. Federal Contract Obligations (Last Year)

Federal procurement summary for TECHFLOW, INC. (CAGE 1HQF4, UEI WDXQN83XB8Z8) covering the last full year of award activity.

TECHFLOW, INC. recorded $245.33 million in obligated awards across 22 actions in the last full year, for an average action value of $11.15 million. Most obligations came from the Transportation Security Administration, with smaller amounts from the Federal Acquisition Service and a negative net amount under the Office of Procurement Operations.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the selected analysis window and may include deobligations, which can produce negative agency or NAICS totals.

CAGE Code
1HQF4
UEI
WDXQN83XB8Z8
Total Obligated
245.33 million
245,332,436.79
Award Actions
22
Average Action Value
11,151,474.39

About TECHFLOW, INC. federal contract activity

TECHFLOW, INC. recorded $245.33 million in obligated federal spending across 22 awards in the last full year, for an average award value of $11.15 million. The vendor’s activity is highly concentrated, with one agency accounting for nearly all observed obligations.

Agency mix and customer concentration

The Transportation Security Administration was the dominant customer, with $244.28 million across 14 awards, representing essentially the full vendor spend in the period. The Federal Acquisition Service contributed a smaller $1.51 million across 6 awards, while the Office of Procurement Operations showed net negative obligations of $464.04 thousand across 2 awards, indicating downward adjustment or deobligation activity.

Industry profile based on NAICS activity

Awarded obligations were concentrated in NAICS 811210, Electronic and Precision Equipment Repair and Maintenance, which accounted for $244.28 million across 14 awards. NAICS 541511, Custom Computer Programming Services, added $1.05 million across 8 awards, showing a limited secondary service mix relative to the core maintenance workload.

Annual contract trend over the analysis window

For calendar year 2025, TECHFLOW, INC. reached $245.33 million in obligations across 22 awards. With only one annual observation in the analysis window, the trend data confirm the annual total but do not support a multi-year growth or volatility assessment.

How to interpret this page

This summary uses FPDS award obligations associated with the vendor’s CAGE code 1HQF4 and UEI WDXQN83XB8Z8 for the last full year. Obligations are grouped by awarding agency and primary NAICS code; negative obligations are retained as reported in FPDS and may reflect deobligations, modifications, or corrections.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1HQF4'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
7013 TRANSPORTATION SECURITY ADMINISTRATION 244,284,410.51 244.28 million 14
4732 FEDERAL ACQUISITION SERVICE 1,512,061.37 1.51 million 6
7001 OFFICE OF PROCUREMENT OPERATIONS -464,035.09 -464.04 thousand 2

Insight

TECHFLOW, INC. (CAGE 1HQF4) had 245.33 million in obligations across 22 awards in the last full year, with activity heavily concentrated in the Transportation Security Administration. TSA accounted for 244.28 million and 14 awards, representing nearly all obligated dollars in the period. Federal Acquisition Service contributed 1.51 million across 6 awards, while Office of Procurement Operations recorded a net negative obligation of 464.04 thousand across 2 awards, indicating minimal additional funding outside the primary TSA relationship.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1HQF4'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
811210 ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE 244,284,410.51 244.28 million 14
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 1,048,026.28 1.05 million 8

Insight

Over the last full year, TECHFLOW, INC. (CAGE 1HQF4) received $245.33 million across 22 awards, with spending highly concentrated in NAICS 811210, Electronic and Precision Equipment Repair and Maintenance. That NAICS accounted for $244.28 million across 14 awards, or nearly all obligated dollars in the period, indicating a strong specialization in that service line. NAICS 541511, Custom Computer Programming Services, represented a much smaller share at $1.05 million across 8 awards, suggesting limited diversification beyond the dominant repair and maintenance activity.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1HQF4'
        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 DESC
Year Total Obligated Readable Award Actions
2025 245,332,436.79 245.33 million 22

Insight

For the last full year, TECHFLOW, INC. (CAGE 1HQF4) recorded $245.33 million in total obligated value across 22 awards, for an average award value of $11.15 million. Obligations in this window are fully concentrated in 2025, indicating activity captured in a single annual period rather than a multi-year trend. The award profile suggests a relatively limited number of comparatively large actions driving the total obligated amount.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.