This page summarizes FPDS award data for the Federal Housing Finance Agency (Agency ID 9542) for the last 10 years. Obligations total 6,420,567.12, with an average action value of 123,472.44, and spending is concentrated in facilities support services, human resources consulting, and computer systems design.
Federal Agency
FEDERAL HOUSING FINANCE AGENCY Federal Contract Obligations (Last 10 Years)
Federal Housing Finance Agency procurement activity over the last 10 years totals 6.42 million across 52 award actions.
Totals, averages, and rankings reflect the provided analysis window and may include rounded figures in readable fields.
About FEDERAL HOUSING FINANCE AGENCY federal contract activity
Over the last 10 years, the Federal Housing Finance Agency recorded 52 FPDS awards totaling 6.42 million in obligated funding, with an average award value of 123,472.44. The award profile is modest in volume and concentrated in a small set of service-based contracts.
Vendor concentration and leading contractors
NVE, INC is the largest vendor in the period, with 2.34 million across 14 awards, followed by GUIDEHOUSE LLP at 1.13 million across 8 awards and POWERTEK CORPORATION at 1.09 million across 10 awards. The remaining top vendors, JACOBS ENGINEERING GROUP INC. and GUIDEHOUSE INC., each represent smaller but still material portions of total obligations, indicating a concentrated supplier base.
Industry profile based on NAICS activity
The largest obligations are tied to NAICS 561210 Facilities Support Services at 2.34 million, followed by 541612 Human Resources Consulting Services at 1.72 million and 541512 Computer Systems Design Services at 1.09 million. Additional spending is concentrated in 541410 Interior Design Services and 611430 Professional and Management Development Training, showing a procurement mix centered on professional, administrative, and support services.
Annual contract trend over the analysis window
Annual obligations peaked in 2021 at 1.21 million across 8 awards, then fell to 689,806 in 2022 and remained in the 700,000 range in 2023 and 2024 before declining to 82,222 in 2025 year-to-date. Award counts followed a similar pattern, with higher activity in 2021 through 2023 and a lower recorded count in 2024 and 2025.
How to interpret this page
This summary is based on FPDS records for Agency ID 9542, Federal Housing Finance Agency, using the last 10 years of available award data. Totals reflect obligated dollars by award, vendor, NAICS code, and fiscal year as provided in the source metrics.
Top Vendors
SELECT
vendor_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '9542'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY vendor_name
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| NVE, INC | 2,339,022.57 | 2.34 million | 14 |
| GUIDEHOUSE LLP | 1,130,929.83 | 1.13 million | 8 |
| POWERTEK CORPORATION | 1,092,721.93 | 1.09 million | 10 |
| JACOBS ENGINEERING GROUP INC. | 611,667.58 | 611.67 thousand | 9 |
| GUIDEHOUSE INC. | 585,399.94 | 585.40 thousand | 5 |
| THE ARBINGER CO | 365,923.17 | 365.92 thousand | 3 |
| SKIDMORE, OWINGS & MERRILL LLP | 294,902.10 | 294.90 thousand | 3 |
Insight
Over the last 10 years, the Federal Housing Finance Agency obligated $6.42 million across 52 awards, with an average award value of $123,472.44. Top vendor spend is moderately concentrated: NVE, INC accounts for $2.34 million across 14 awards, or about 36% of total obligated dollars, while the next two vendors, GUIDEHOUSE LLP and POWERTEK CORPORATION, add another $2.22 million combined. The remaining listed vendors each represent less than $0.62 million, indicating a long tail of smaller obligations beyond the leading vendors.
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__purchaserInformation__contractingOfficeAgencyID = '9542'
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 |
|---|---|---|---|---|
| 561210 | FACILITIES SUPPORT SERVICES | 2,339,022.57 | 2.34 million | 14 |
| 541612 | HUMAN RESOURCES CONSULTING SERVICES (2007), HUMAN RESOURCES AND EXECUTIVE SEARCH CONSULTING SERVICES (2002) | 1,716,329.77 | 1.72 million | 13 |
| 541512 | COMPUTER SYSTEMS DESIGN SERVICES | 1,092,721.93 | 1.09 million | 10 |
| 541410 | INTERIOR DESIGN SERVICES | 906,569.68 | 906.57 thousand | 12 |
| 611430 | PROFESSIONAL AND MANAGEMENT DEVELOPMENT TRAINING | 365,923.17 | 365.92 thousand | 3 |
Insight
Over the last 10 years, the Federal Housing Finance Agency obligated $6.42 million across 52 awards, with spending concentrated in a small set of service categories. NAICS 561210, Facilities Support Services, led obligations at $2.34 million across 14 awards, followed by Human Resources Consulting Services ($1.72 million, 13 awards) and Computer Systems Design Services ($1.09 million, 10 awards). The top five NAICS codes account for most reported obligations, indicating a spending profile centered on facilities, administrative, IT, and professional support services rather than broad category diversification.
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__purchaserInformation__contractingOfficeAgencyID = '9542'
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 | 82,222.18 | 82.22 thousand | 4 |
| 2024 | 733,661.38 | 733.66 thousand | 2 |
| 2023 | 723,145.75 | 723.15 thousand | 6 |
| 2022 | 689,806.00 | 689.81 thousand | 7 |
| 2021 | 1,210,187.83 | 1.21 million | 8 |
| 2020 | 526,221.08 | 526.22 thousand | 2 |
| 2019 | 128,900.00 | 128.90 thousand | 2 |
| 2018 | -142,232.42 | -142.23 thousand | 5 |
| 2017 | 328,877.77 | 328.88 thousand | 8 |
| 2016 | 2,139,777.55 | 2.14 million | 8 |
Insight
Over the last 10 years, FEDERAL HOUSING FINANCE AGENCY obligated $6.42 million across 52 awards, averaging $123.5 thousand per award. Obligations were highly concentrated in 2016 ($2.14 million) and 2021 ($1.21 million), with lower but recurring activity in 2022-2024 and a sharp decline to $82.2 thousand in 2025 year-to-date. The series also includes a negative obligation in 2018 (-$142.2 thousand), indicating a downward adjustment that reduced net obligations for that year.
Use FPDS Query for deeper analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.
Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.