Federal Agency

FEDERAL HOUSING FINANCE AGENCY Federal Contract Obligations (Last 5 Years)

Federal Housing Finance Agency procurement totals $3.44 million across 27 award actions over the last 5 years.

This FPDS Query page summarizes Federal Housing Finance Agency obligations for the last 5 years, totaling $3,439,023.14 across 27 award actions. Spending is concentrated in facilities support services, human resources consulting, and professional development training, with NVE, Inc. and Guidehouse LLP accounting for most obligations.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual totals peak in 2021 at $1.21 million and remain above $689,000 in 2022 through 2024 before falling to $82,222.18 in 2025.

Agency ID
9542
Total Obligated
3.44 million
3,439,023.14
Award Actions
27
Average Action Value
127,371.22

About FEDERAL HOUSING FINANCE AGENCY federal contract activity

Over the last 5 years, the Federal Housing Finance Agency recorded $3.44 million in obligated spending across 27 awards, for an average award value of $127,371.22. Procurement activity was concentrated in a relatively small set of awards, indicating limited transaction volume with moderate award sizes.

Vendor concentration and leading contractors

NVE, INC was the largest vendor by obligated value at $1.88 million across 13 awards, accounting for the clear majority of vendor spend. GUIDEHOUSE LLP followed with $1.06 million across 7 awards, while THE ARBINGER CO and GUIDEHOUSE INC. represented smaller portions of total obligations at $365,923.17 and $133,733.86, respectively.

Industry profile based on NAICS activity

Spending was led by NAICS 561210, Facilities Support Services, with $1.88 million across 13 awards, making it the dominant category in the period. Human Resources Consulting Services under NAICS 541612 accounted for $1.19 million across 11 awards, and Professional and Management Development Training under NAICS 611430 added $365,923.17 across 3 awards, showing concentration in support, consulting, and training services.

Annual contract trend over the analysis window

Annual obligations peaked in 2021 at $1.21 million across 8 awards and then declined in 2022 and 2023 before rising again in 2024 to $733,661.38. The 2025 figure of $82,222.18 across 4 awards likely reflects partial-year activity within the analysis window rather than a full-year comparable total.

How to interpret this page

This summary is based on FPDS Query obligations for Agency ID 9542 over the last 5 years, using total obligated amounts, award counts, vendor totals, NAICS classifications, and annual totals provided in the dataset. Values are reported as obligated dollars and reflect the analysis window as supplied, with no adjustment for inflation or contract lifecycle timing.

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 5 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 1,882,991.28 1.88 million 13
GUIDEHOUSE LLP 1,056,374.83 1.06 million 7
THE ARBINGER CO 365,923.17 365.92 thousand 3
GUIDEHOUSE INC. 133,733.86 133.73 thousand 4

Insight

Over the last 5 years, FEDERAL HOUSING FINANCE AGENCY obligated $3.44 million across 27 awards, with an average award value of $127.4 thousand. Obligations are concentrated among two vendors: NVE, INC received $1.88 million across 13 awards and GUIDEHOUSE LLP received $1.06 million across 7 awards, together accounting for most of the agency’s obligated spend in this period. The remaining listed vendors, THE ARBINGER CO and GUIDEHOUSE INC., received substantially smaller amounts, indicating a relatively concentrated vendor base with limited spend beyond the top suppliers.

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 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
561210 FACILITIES SUPPORT SERVICES 1,882,991.28 1.88 million 13
541612 HUMAN RESOURCES CONSULTING SERVICES (2007), HUMAN RESOURCES AND EXECUTIVE SEARCH CONSULTING SERVICES (2002) 1,190,108.69 1.19 million 11
611430 PROFESSIONAL AND MANAGEMENT DEVELOPMENT TRAINING 365,923.17 365.92 thousand 3

Insight

Over the last 5 years, the Federal Housing Finance Agency obligated 3.44 million across 27 awards, with average award value of 127,371.22. Obligations are concentrated in two NAICS codes: 561210 Facilities Support Services accounts for 1.88 million and 13 awards, and 541612 Human Resources Consulting Services accounts for 1.19 million and 11 awards, together representing the large majority of spending. A smaller share, 365,923.17 across 3 awards, was obligated to 611430 Professional and Management Development Training, indicating a limited but distinct third area of contracting 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__purchaserInformation__contractingOfficeAgencyID = '9542'
        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 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

Insight

Over the last 5 years, the Federal Housing Finance Agency obligated $3.44 million across 27 awards, with an average award value of $127.4 thousand. Obligations were concentrated in 2021 at $1.21 million across 8 awards, then declined in 2022 and 2023 to roughly $689.8 thousand and $723.1 thousand, respectively. Funding increased modestly in 2024 to $733.7 thousand with only 2 awards, then fell sharply in 2025 to $82.2 thousand across 4 awards, indicating a recent contraction after a higher-spending period.

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