Federal Contractor

REED TECHNOLOGY AND INFORMATION SERVICES INC. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for REED TECHNOLOGY AND INFORMATION SERVICES INC. shows $965.51 million in obligated awards across 79 actions over the last five years.

REED TECHNOLOGY AND INFORMATION SERVICES INC. (CAGE 3HFE7, UEI M8U2V6FM8643) received nearly all of its federal obligation from the US Patent and Trademark Office, with smaller activity from the Social Security Administration. The record is concentrated in NAICS 511199, All Other Publishers, with limited awards in NAICS 519190, All Other Information Services.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the last five years and may differ slightly from summed agency or annual breakdowns because of rounding.

CAGE Code
3HFE7
UEI
M8U2V6FM8643
Total Obligated
965.51 million
965,507,712.25
Award Actions
79
Average Action Value
12,221,616.61

About REED TECHNOLOGY AND INFORMATION SERVICES INC. federal contract activity

REED TECHNOLOGY AND INFORMATION SERVICES INC. recorded $965.51 million in obligated federal spending across 79 awards over the last 5 years, with an average award value of $12.22 million. The vendor’s federal business is highly concentrated, and the US Patent and Trademark Office accounts for nearly all observed obligations in this period.

Agency mix and customer concentration

The US Patent and Trademark Office is the dominant customer, responsible for $965.47 million across 74 awards, or essentially the full award value in the analysis window. The only other agency activity appears at the Social Security Administration, which obligated $36.77 thousand across 5 awards, indicating minimal diversification beyond the core account.

Industry profile based on NAICS activity

Award activity is concentrated in NAICS 511199, All Other Publishers, which mirrors the primary agency relationship and represents $965.47 million across 74 awards. A small secondary share is classified under NAICS 519190, All Other Information Services, totaling $36.77 thousand across 5 awards.

Annual contract trend over the analysis window

Annual obligations remained above $159.39 million each year from 2021 through 2025, peaking at $204.32 million in 2022 and staying in a relatively tight band thereafter. Award counts were highest in 2021 and 2025, while 2024 shows fewer awards but still substantial obligation volume, suggesting larger individual awards rather than a broad expansion in transaction count.

How to interpret this page

This summary is based on FPDS awards tied to CAGE code 3HFE7 and UEI M8U2V6FM8643 over the last 5 years. Totals reflect obligated dollars and award counts in the provided dataset, grouped by agency, NAICS code, and fiscal year; values are rounded for readability and may not sum exactly due to rounding.

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 = '3HFE7'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
1344 US PATENT AND TRADEMARK OFFICE 965,470,939.13 965.47 million 74
2800 SOCIAL SECURITY ADMINISTRATION 36,773.12 36.77 thousand 5

Insight

Over the last 5 years, REED TECHNOLOGY AND INFORMATION SERVICES INC. received 965.51 million in obligations across 79 awards, with activity highly concentrated at the US Patent and Trademark Office. USPTO accounted for 965.47 million of total obligations and 74 awards, representing essentially all vendor activity in the period. The only other identified agency was the Social Security Administration, with 36.77 thousand across 5 awards, indicating minimal diversification outside USPTO.

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 = '3HFE7'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
511199 ALL OTHER PUBLISHERS 965,470,939.13 965.47 million 74
519190 ALL OTHER INFORMATION SERVICES 36,773.12 36.77 thousand 5

Insight

Over the last 5 years, REED TECHNOLOGY AND INFORMATION SERVICES INC. received $965.51 million across 79 awards, with an average award value of $12.22 million. Obligations are overwhelmingly concentrated in NAICS 511199, All Other Publishers, which accounts for $965.47 million and 74 awards. NAICS 519190, All Other Information Services, is a minimal secondary category at $36.77 thousand across 5 awards, indicating highly focused procurement activity in a single primary NAICS.

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 = '3HFE7'
        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 DESC
Year Total Obligated Readable Award Actions
2025 159,394,987.49 159.39 million 24
2024 202,833,172.89 202.83 million 7
2023 195,478,826.42 195.48 million 10
2022 204,322,576.41 204.32 million 13
2021 203,478,149.04 203.48 million 25

Insight

Over the last 5 years, REED TECHNOLOGY AND INFORMATION SERVICES INC. (CAGE 3HFE7) obligated $965.51 million across 79 awards, averaging $12.22 million per award. Obligations were relatively stable from 2021 through 2024, ranging from $195.48 million to $204.32 million annually, then declined to $159.39 million in 2025. Award volume was highest in 2021 and 2025, indicating that obligations are not evenly distributed across years and the most recent year reflects a lower funded value despite a higher number of actions.

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