Federal Contractor

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

REED TECHNOLOGY AND INFORMATION SERVICES INC. (CAGE 3HFE7, UEI M8U2V6FM8643) has 157 federal award actions with $1.62 billion obligated over the last 10 years.

REED TECHNOLOGY AND INFORMATION SERVICES INC. is overwhelmingly concentrated at the US PATENT AND TRADEMARK OFFICE, which accounts for nearly all reported obligations and the vast majority of award actions. The vendor’s activity is primarily in NAICS 511199, All Other Publishers, with smaller obligations recorded from the Social Security Administration, the Defense Health Agency, Veterans Affairs, and the Food and Drug Administration.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect readable FPDS obligations for the last 10 years; annual and category totals may include small negative adjustments.

CAGE Code
3HFE7
UEI
M8U2V6FM8643
Total Obligated
1.62 billion
1,620,694,850.67
Award Actions
157
Average Action Value
10,322,897.13

About REED TECHNOLOGY AND INFORMATION SERVICES INC. federal contract activity

REED TECHNOLOGY AND INFORMATION SERVICES INC. shows $1.62 billion in obligated contract value across 157 awards over the last 10 years, with an average award value of about $10.32 million. The profile is highly concentrated, with nearly all obligations tied to CAGE 3HFE7 and UEI M8U2V6FM8643.

Agency mix and customer concentration

The US Patent and Trademark Office accounts for essentially the entire spend base, with $1.62 billion across 145 awards. All other agencies combined represent a very small share of obligations, led by the Social Security Administration at $57.57 thousand across 9 awards, with isolated smaller awards from the Defense Health Agency and Veterans Affairs and a negative obligation at FDA.

Industry profile based on NAICS activity

The NAICS profile is similarly concentrated in 511199, All Other Publishers, which captures $1.62 billion across 140 awards. Secondary activity appears in 519190 and a handful of smaller NAICS categories, indicating limited diversification outside publishing and related information services.

Annual contract trend over the analysis window

Annual obligations remain consistently high in the recent period, ranging from $159.39 million in 2025 to $204.32 million in 2022, with 2021 at $203.48 million and 2024 at $202.83 million. Award counts fluctuate materially year to year, suggesting variation in contract structure or timing even as obligated dollars remain relatively stable.

How to interpret this page

This summary uses FPDS award data for the last 10 years and aggregates obligations, award counts, agency distribution, NAICS distribution, and annual trends associated with the vendor identifiers provided. Negative obligations are retained as reported in FPDS and may reflect deobligations or adjustments rather than new business volume.

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 10 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 1,620,678,953.55 1.62 billion 145
2800 SOCIAL SECURITY ADMINISTRATION 57,565.12 57.57 thousand 9
97DH DEFENSE HEALTH AGENCY (DHA) 11,045.00 11.04 thousand 1
3600 VETERANS AFFAIRS, DEPARTMENT OF 6,000.00 6.00 thousand 1
7524 FOOD AND DRUG ADMINISTRATION -58,713.00 -58.71 thousand 1

Insight

Over the last 10 years, REED TECHNOLOGY AND INFORMATION SERVICES INC. received 1.62 billion in obligations across 157 awards, with spending highly concentrated at the U.S. Patent and Trademark Office. USPTO accounts for 1.62 billion and 145 awards, effectively representing nearly all of the vendor’s obligated value in the period. The remaining agencies contributed only small, fragmented obligations, including the Social Security Administration at 57.57 thousand across 9 awards and single-award obligations from DHA and VA, while FDA shows a net negative obligation of 58.71 thousand.

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 10 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 1,620,678,953.55 1.62 billion 140
519190 ALL OTHER INFORMATION SERVICES 57,565.12 57.57 thousand 14
518210 DATA PROCESSING, HOSTING, AND RELATED SERVICES 11,045.00 11.04 thousand 1
541519 OTHER COMPUTER RELATED SERVICES 6,000.00 6.00 thousand 1
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES -58,713.00 -58.71 thousand 1

Insight

Over the last 10 years, REED TECHNOLOGY AND INFORMATION SERVICES INC. shows extreme NAICS concentration in 511199, ALL OTHER PUBLISHERS, which accounts for nearly all obligations at $1.62 billion across 140 awards. The remaining NAICS codes are immaterial by comparison, with only small amounts obligated under 519190, 518210, and 541519, and a single negative obligation in 541990. This distribution indicates the vendor’s FPDS activity is overwhelmingly tied to publishing-related awards, with limited evidence of diversification across other service categories.

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 10 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
2020 200,623,902.38 200.62 million 24
2019 157,897,711.05 157.90 million 16
2018 172,535,292.12 172.54 million 22
2017 124,130,232.87 124.13 million 16

Insight

Over the last 10 years, REED TECHNOLOGY AND INFORMATION SERVICES INC. (CAGE 3HFE7) received $1.62 billion across 157 awards, averaging $10.32 million per award. Obligations are concentrated in a relatively stable annual band from about $157.90 million to $204.32 million from 2019 through 2024, with 2025 lower at $159.39 million; 2017 is the lowest year in the period at $124.13 million. Award volume is more uneven than dollars, ranging from 7 awards in 2024 to 25 in 2021, indicating that annual obligation levels have been driven more by award value than by award count.

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